2 writes to BreakLabel
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
3894
this.
BreakLabel
= breakLabel;
3905
this.
BreakLabel
= breakLabel;
38 references to BreakLabel
Microsoft.CodeAnalysis.CSharp (38)
FlowAnalysis\AbstractFlowPass.cs (4)
2349
ResolveBreaks(breakState, node.
BreakLabel
);
2872
ResolveBreaks(breakState, node.
BreakLabel
);
2886
ResolveBreaks(breakState, node.
BreakLabel
);
3340
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)
3955
if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.
BreakLabel
) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel))
3985
if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.
BreakLabel
) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel))
4027
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))
4078
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))
11467
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
11476
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
11486
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
11497
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
13593
return node.Update(locals, condition, body, node.
BreakLabel
, node.ContinueLabel);
13601
return node.Update(locals, condition, body, node.
BreakLabel
, node.ContinueLabel);
13612
return node.Update(outerLocals, initializer, innerLocals, condition, increment, body, node.
BreakLabel
, node.ContinueLabel);
13626
return node.Update(node.EnumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, iterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, awaitOpt, body, node.
BreakLabel
, node.ContinueLabel);
16029
new TreeDumperNode("breakLabel", node.
BreakLabel
, null),
16039
new TreeDumperNode("breakLabel", node.
BreakLabel
, null),
16052
new TreeDumperNode("breakLabel", node.
BreakLabel
, null),
16069
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
,
574
node.
BreakLabel
,
875
node.
BreakLabel
,
1024
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();