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