2 writes to BreakLabel
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
3891this.BreakLabel = breakLabel; 3902this.BreakLabel = breakLabel;
41 references to BreakLabel
Microsoft.CodeAnalysis.CSharp (41)
FlowAnalysis\AbstractFlowPass.cs (4)
2343ResolveBreaks(breakState, node.BreakLabel); 2862ResolveBreaks(breakState, node.BreakLabel); 2876ResolveBreaks(breakState, node.BreakLabel); 3325ResolveBreaks(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)
3952if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 3982if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel)) 4024if (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)) 4075if (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)) 11371return node.Update(node.Locals, condition, body, node.BreakLabel, node.ContinueLabel); 11377return node.Update(node.Locals, condition, body, node.BreakLabel, node.ContinueLabel); 11385return node.Update(node.OuterLocals, initializer, node.InnerLocals, condition, increment, body, node.BreakLabel, node.ContinueLabel); 11397return node.Update(node.EnumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, node.IterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, awaitOpt, body, node.BreakLabel, node.ContinueLabel); 13407return node.Update(locals, condition, body, node.BreakLabel, node.ContinueLabel); 13415return node.Update(locals, condition, body, node.BreakLabel, node.ContinueLabel); 13426return node.Update(outerLocals, initializer, innerLocals, condition, increment, body, node.BreakLabel, node.ContinueLabel); 13440return node.Update(node.EnumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, iterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, awaitOpt, body, node.BreakLabel, node.ContinueLabel); 15842new TreeDumperNode("breakLabel", node.BreakLabel, null), 15852new TreeDumperNode("breakLabel", node.BreakLabel, null), 15865new TreeDumperNode("breakLabel", node.BreakLabel, null), 15882new 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,
Lowering\MethodToClassRewriter.cs (3)
181return node.Update(newOuterLocals, initializer, newInnerLocals, condition, increment, body, node.BreakLabel, node.ContinueLabel); 189return node.Update(newLocals, condition, body, node.BreakLabel, node.ContinueLabel); 197return node.Update(newLocals, condition, body, node.BreakLabel, node.ContinueLabel);
Operations\CSharpOperationFactory.cs (4)
1850ILabelSymbol exitLabel = boundWhileStatement.BreakLabel.GetPublicSymbol(); 1863ILabelSymbol exitLabel = boundDoStatement.BreakLabel.GetPublicSymbol(); 1881ILabelSymbol exitLabel = boundForStatement.BreakLabel.GetPublicSymbol(); 1988ILabelSymbol exitLabel = boundForEachStatement.BreakLabel.GetPublicSymbol();