1 write to ContinueLabel
System.Linq.Expressions (1)
System\Linq\Expressions\LoopExpression.cs (1)
19ContinueLabel = @continue;
9 references to ContinueLabel
System.Linq.Expressions (9)
System\Linq\Expressions\Compiler\LambdaCompiler.Statements.cs (1)
145LabelInfo continueTarget = DefineLabel(node.ContinueLabel);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
843expr = new LoopExpression(body.Node, node.BreakLabel, node.ContinueLabel);
System\Linq\Expressions\DebugViewWriter.cs (2)
1015if (node.ContinueLabel != null) 1017DumpLabel(node.ContinueLabel);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
269public LabelTarget? ContinueLabel => _node.ContinueLabel;
System\Linq\Expressions\ExpressionVisitor.cs (1)
365return node.Update(VisitLabelTarget(node.BreakLabel), VisitLabelTarget(node.ContinueLabel), Visit(node.Body));
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
1512LabelInfo continueLabel = DefineLabel(node.ContinueLabel);
System\Linq\Expressions\LoopExpression.cs (2)
64/// <param name="continueLabel">The <see cref="ContinueLabel"/> property of the result.</param> 69if (breakLabel == BreakLabel && continueLabel == ContinueLabel && body == Body)