We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e14f07 commit f9bc3a6Copy full SHA for f9bc3a6
1 file changed
src/core/IronPython/Compiler/Ast/FunctionDefinition.cs
@@ -740,6 +740,7 @@ private LightLambdaExpression CreateFunctionLambda() {
740
var throwSlot = AsyncThrowSlot;
741
body = MSAst.Expression.Block(
742
[cts, excBox, sendSlot, throwSlot],
743
+ MakeFunctionEntrySequencePoint(StartIndex),
744
MSAst.Expression.Assign(cts, MSAst.Expression.New(typeof(CancellationTokenSource))),
745
MSAst.Expression.Assign(excBox, MSAst.Expression.New(typeof(StrongBox<Exception>))),
746
MSAst.Expression.Assign(sendSlot, MSAst.Expression.New(typeof(StrongBox<object>))),
0 commit comments