2 writes to BreakLabel
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
3918
this.
BreakLabel
= breakLabel;
3929
this.
BreakLabel
= breakLabel;
38 references to BreakLabel
Microsoft.CodeAnalysis.CSharp (38)
FlowAnalysis\AbstractFlowPass.cs (4)
2349
ResolveBreaks(breakState, node.
BreakLabel
);
2893
ResolveBreaks(breakState, node.
BreakLabel
);
2907
ResolveBreaks(breakState, node.
BreakLabel
);
3361
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)
3979
if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.
BreakLabel
) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.ContinueLabel))
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))
4051
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))
4100
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))
11502
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
11511
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
11521
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
11532
LabelSymbol breakLabel = this.VisitLabelSymbol(node.
BreakLabel
);
13619
return node.Update(locals, condition, body, node.
BreakLabel
, node.ContinueLabel);
13627
return node.Update(locals, condition, body, node.
BreakLabel
, node.ContinueLabel);
13638
return node.Update(outerLocals, initializer, innerLocals, condition, increment, body, node.
BreakLabel
, node.ContinueLabel);
13651
return node.Update(node.EnumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, iterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, body, node.
BreakLabel
, node.ContinueLabel);
16048
new TreeDumperNode("breakLabel", node.
BreakLabel
, null),
16058
new TreeDumperNode("breakLabel", node.
BreakLabel
, null),
16071
new TreeDumperNode("breakLabel", node.
BreakLabel
, null),
16087
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)
1841
ILabelSymbol exitLabel = boundWhileStatement.
BreakLabel
.GetPublicSymbol();
1854
ILabelSymbol exitLabel = boundDoStatement.
BreakLabel
.GetPublicSymbol();
1872
ILabelSymbol exitLabel = boundForStatement.
BreakLabel
.GetPublicSymbol();
1979
ILabelSymbol exitLabel = boundForEachStatement.
BreakLabel
.GetPublicSymbol();