2 writes to BreakLabel
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
3890this.BreakLabel = breakLabel; 3901this.BreakLabel = breakLabel;
38 references to BreakLabel
Microsoft.CodeAnalysis.CSharp (38)
FlowAnalysis\AbstractFlowPass.cs (4)
2350ResolveBreaks(breakState, node.BreakLabel); 2873ResolveBreaks(breakState, node.BreakLabel); 2887ResolveBreaks(breakState, node.BreakLabel); 3341ResolveBreaks(breakState, node.BreakLabel);
FlowAnalysis\ExitPointsWalker.cs (4)
80_labelsInside.Add(node.BreakLabel); 90_labelsInside.Add(node.BreakLabel); 100_labelsInside.Add(node.BreakLabel); 110_labelsInside.Add(node.BreakLabel);
Generated\BoundNodes.xml.Generated.cs (16)
3951if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 3981if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 4023if (outerLocals != this.OuterLocals || initializer != this.Initializer || innerLocals != this.InnerLocals || condition != this.Condition || increment != this.Increment || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 4074if (enumeratorInfoOpt != this.EnumeratorInfoOpt || elementPlaceholder != this.ElementPlaceholder || elementConversion != this.ElementConversion || iterationVariableType != this.IterationVariableType || iterationVariables != this.IterationVariables || iterationErrorExpressionOpt != this.IterationErrorExpressionOpt || expression != this.Expression || deconstructionOpt != this.DeconstructionOpt || awaitOpt != this.AwaitOpt || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 11461LabelSymbol breakLabel = this.VisitLabelSymbol(node.BreakLabel); 11470LabelSymbol breakLabel = this.VisitLabelSymbol(node.BreakLabel); 11480LabelSymbol breakLabel = this.VisitLabelSymbol(node.BreakLabel); 11491LabelSymbol breakLabel = this.VisitLabelSymbol(node.BreakLabel); 13587return node.Update(locals, condition, body, node.BreakLabel, node.ContinueLabel); 13595return node.Update(locals, condition, body, node.BreakLabel, node.ContinueLabel); 13606return node.Update(outerLocals, initializer, innerLocals, condition, increment, body, node.BreakLabel, node.ContinueLabel); 13620return node.Update(node.EnumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, iterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, awaitOpt, body, node.BreakLabel, node.ContinueLabel); 16021new TreeDumperNode("breakLabel", node.BreakLabel, null), 16031new TreeDumperNode("breakLabel", node.BreakLabel, null), 16044new TreeDumperNode("breakLabel", node.BreakLabel, null), 16061new TreeDumperNode("breakLabel", node.BreakLabel, null),
Lowering\LocalRewriter\LocalRewriter_DoStatement.cs (2)
62new BoundLabelStatement(syntax, node.BreakLabel)); 72new BoundLabelStatement(syntax, node.BreakLabel));
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (4)
130node.BreakLabel, 588node.BreakLabel, 889node.BreakLabel, 1038node.BreakLabel,
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (3)
188node.BreakLabel, 241BoundStatement ifNotConditionGotoBreak = new BoundConditionalGoto(rewrittenCondition.Syntax, rewrittenCondition, false, node.BreakLabel); 268statementBuilder.Add(new BoundLabelStatement(syntax, node.BreakLabel));
Lowering\LocalRewriter\LocalRewriter_WhileStatement.cs (1)
36node.BreakLabel,
Operations\CSharpOperationFactory.cs (4)
1850ILabelSymbol exitLabel = boundWhileStatement.BreakLabel.GetPublicSymbol(); 1863ILabelSymbol exitLabel = boundDoStatement.BreakLabel.GetPublicSymbol(); 1881ILabelSymbol exitLabel = boundForStatement.BreakLabel.GetPublicSymbol(); 1988ILabelSymbol exitLabel = boundForEachStatement.BreakLabel.GetPublicSymbol();