2 writes to ContinueLabel
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
3917
this.
ContinueLabel
= continueLabel;
3928
this.
ContinueLabel
= continueLabel;
36 references to ContinueLabel
Microsoft.CodeAnalysis.CSharp (36)
FlowAnalysis\AbstractFlowPass.cs (4)
2347
ResolveContinues(node.
ContinueLabel
);
2886
ResolveContinues(node.
ContinueLabel
);
2905
ResolveContinues(node.
ContinueLabel
);
3356
ResolveContinues(node.
ContinueLabel
);
FlowAnalysis\ExitPointsWalker.cs (3)
81
_labelsInside.Add(node.
ContinueLabel
);
91
_labelsInside.Add(node.
ContinueLabel
);
101
_labelsInside.Add(node.
ContinueLabel
);
Generated\BoundNodes.xml.Generated.cs (16)
3977
if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.
ContinueLabel
))
4007
if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.
ContinueLabel
))
4049
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
))
4098
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
))
11501
LabelSymbol continueLabel = this.VisitLabelSymbol(node.
ContinueLabel
);
11510
LabelSymbol continueLabel = this.VisitLabelSymbol(node.
ContinueLabel
);
11520
LabelSymbol continueLabel = this.VisitLabelSymbol(node.
ContinueLabel
);
11531
LabelSymbol continueLabel = this.VisitLabelSymbol(node.
ContinueLabel
);
13617
return node.Update(locals, condition, body, node.BreakLabel, node.
ContinueLabel
);
13625
return node.Update(locals, condition, body, node.BreakLabel, node.
ContinueLabel
);
13636
return node.Update(outerLocals, initializer, innerLocals, condition, increment, body, node.BreakLabel, node.
ContinueLabel
);
13649
return node.Update(node.EnumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, iterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, body, node.BreakLabel, node.
ContinueLabel
);
16046
new TreeDumperNode("continueLabel", node.
ContinueLabel
, null),
16056
new TreeDumperNode("continueLabel", node.
ContinueLabel
, null),
16069
new TreeDumperNode("continueLabel", node.
ContinueLabel
, null),
16085
new TreeDumperNode("continueLabel", node.
ContinueLabel
, null),
Lowering\LocalRewriter\LocalRewriter_DoStatement.cs (2)
60
new BoundLabelStatement(syntax, node.
ContinueLabel
),
70
new BoundLabelStatement(syntax, node.
ContinueLabel
),
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (4)
136
node.
ContinueLabel
,
580
node.
ContinueLabel
,
881
node.
ContinueLabel
,
1030
node.
ContinueLabel
,
Lowering\LocalRewriter\LocalRewriter_ForStatement.cs (2)
189
node.
ContinueLabel
, node.HasErrors);
256
blockBuilder.Add(new BoundLabelStatement(syntax, node.
ContinueLabel
));
Lowering\LocalRewriter\LocalRewriter_WhileStatement.cs (1)
37
node.
ContinueLabel
,
Operations\CSharpOperationFactory.cs (4)
1840
ILabelSymbol continueLabel = boundWhileStatement.
ContinueLabel
.GetPublicSymbol();
1853
ILabelSymbol continueLabel = boundDoStatement.
ContinueLabel
.GetPublicSymbol();
1871
ILabelSymbol continueLabel = boundForStatement.
ContinueLabel
.GetPublicSymbol();
1978
ILabelSymbol continueLabel = boundForEachStatement.
ContinueLabel
.GetPublicSymbol();