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