8 references to ContinueLabel
System.Core (8)
Microsoft\Scripting\Ast\DebugViewWriter.cs (2)
989if (node.ContinueLabel != null) { 990DumpLabel(node.ContinueLabel);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
264public LabelTarget ContinueLabel { get { return _node.ContinueLabel; } }
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
378return 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> 101if (breakLabel == BreakLabel && continueLabel == ContinueLabel && body == Body) {
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (1)
144LabelInfo continueTarget = DefineLabel(node.ContinueLabel);
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
747expr = new LoopExpression(body.Node, node.BreakLabel, node.ContinueLabel);