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