2 writes to BreakLabel
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
3948
this.
BreakLabel
= breakLabel;
3959
this.
BreakLabel
= breakLabel;
38 references to BreakLabel
Microsoft.CodeAnalysis.CSharp (38)
FlowAnalysis\AbstractFlowPass.cs (4)
2350
ResolveBreaks(breakState, node.
BreakLabel
);
2894
ResolveBreaks(breakState, node.
BreakLabel
);
2908
ResolveBreaks(breakState, node.
BreakLabel
);
3362
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)
4009
if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.
BreakLabel
) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel))
4039
if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.
BreakLabel
) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel))
4081
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))
4130
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 || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.
BreakLabel
) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel))
11597
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
11606
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
11616
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
11627
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
13731
return node.Update(locals, condition, body, node.
BreakLabel
, node.ContinueLabel);
13739
return node.Update(locals, condition, body, node.
BreakLabel
, node.ContinueLabel);
13750
return node.Update(outerLocals, initializer, innerLocals, condition, increment, body, node.
BreakLabel
, node.ContinueLabel);
13763
return node.Update(node.EnumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, iterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, body, node.
BreakLabel
, node.ContinueLabel);
16167
new TreeDumperNode("breakLabel", node.
BreakLabel
, null),
16177
new TreeDumperNode("breakLabel", node.
BreakLabel
, null),
16190
new TreeDumperNode("breakLabel", node.
BreakLabel
, null),
16206
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)
135
node.
BreakLabel
,
579
node.
BreakLabel
,
880
node.
BreakLabel
,
1029
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)
1891
ILabelSymbol exitLabel = boundWhileStatement.
BreakLabel
.GetPublicSymbol();
1904
ILabelSymbol exitLabel = boundDoStatement.
BreakLabel
.GetPublicSymbol();
1922
ILabelSymbol exitLabel = boundForStatement.
BreakLabel
.GetPublicSymbol();
2029
ILabelSymbol exitLabel = boundForEachStatement.
BreakLabel
.GetPublicSymbol();