8 references to ContinueLabel
System.Core (8)
Microsoft\Scripting\Ast\DebugViewWriter.cs (2)
989
if (node.
ContinueLabel
!= null) {
990
DumpLabel(node.
ContinueLabel
);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
264
public LabelTarget ContinueLabel { get { return _node.
ContinueLabel
; } }
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
378
return node.Update(VisitLabelTarget(node.BreakLabel), VisitLabelTarget(node.
ContinueLabel
), Visit(node.Body));
Microsoft\Scripting\Ast\LoopExpression.cs (2)
97
/// <param name="continueLabel">The <see cref="
ContinueLabel
" /> property of the result.</param>
101
if (breakLabel == BreakLabel && continueLabel ==
ContinueLabel
&& body == Body) {
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (1)
144
LabelInfo continueTarget = DefineLabel(node.
ContinueLabel
);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
747
expr = new LoopExpression(body.Node, node.BreakLabel, node.
ContinueLabel
);