2 writes to ContinueLabel
Microsoft.CodeAnalysis.CSharp (2)
Generated\BoundNodes.xml.Generated.cs (2)
3891
this.
ContinueLabel
= continueLabel;
3902
this.
ContinueLabel
= continueLabel;
36 references to ContinueLabel
Microsoft.CodeAnalysis.CSharp (36)
FlowAnalysis\AbstractFlowPass.cs (4)
2348
ResolveContinues(node.
ContinueLabel
);
2866
ResolveContinues(node.
ContinueLabel
);
2885
ResolveContinues(node.
ContinueLabel
);
3336
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)
3951
if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.
ContinueLabel
))
3981
if (locals != this.Locals || condition != this.Condition || body != this.Body || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(breakLabel, this.BreakLabel) || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(continueLabel, this.
ContinueLabel
))
4023
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
))
4074
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
))
11462
LabelSymbol continueLabel = this.VisitLabelSymbol(node.
ContinueLabel
);
11471
LabelSymbol continueLabel = this.VisitLabelSymbol(node.
ContinueLabel
);
11481
LabelSymbol continueLabel = this.VisitLabelSymbol(node.
ContinueLabel
);
11492
LabelSymbol continueLabel = this.VisitLabelSymbol(node.
ContinueLabel
);
13587
return node.Update(locals, condition, body, node.BreakLabel, node.
ContinueLabel
);
13595
return node.Update(locals, condition, body, node.BreakLabel, node.
ContinueLabel
);
13606
return node.Update(outerLocals, initializer, innerLocals, condition, increment, body, node.BreakLabel, node.
ContinueLabel
);
13620
return node.Update(node.EnumeratorInfoOpt, elementPlaceholder, elementConversion, iterationVariableType, iterationVariables, iterationErrorExpressionOpt, expression, deconstructionOpt, awaitOpt, body, node.BreakLabel, node.
ContinueLabel
);
16022
new TreeDumperNode("continueLabel", node.
ContinueLabel
, null),
16032
new TreeDumperNode("continueLabel", node.
ContinueLabel
, null),
16045
new TreeDumperNode("continueLabel", node.
ContinueLabel
, null),
16062
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)
131
node.
ContinueLabel
,
589
node.
ContinueLabel
,
890
node.
ContinueLabel
,
1039
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)
1849
ILabelSymbol continueLabel = boundWhileStatement.
ContinueLabel
.GetPublicSymbol();
1862
ILabelSymbol continueLabel = boundDoStatement.
ContinueLabel
.GetPublicSymbol();
1880
ILabelSymbol continueLabel = boundForStatement.
ContinueLabel
.GetPublicSymbol();
1987
ILabelSymbol continueLabel = boundForEachStatement.
ContinueLabel
.GetPublicSymbol();