3 overrides of GetContinueLabel
Microsoft.CodeAnalysis.CSharp (3)
Binder\BuckStopsHereBinder.cs (1)
128
internal override GeneratedLabelSymbol?
GetContinueLabel
(string? labelName) => null;
Binder\InMethodBinder.cs (1)
109
internal override GeneratedLabelSymbol?
GetContinueLabel
(string? labelName) => null;
Binder\LoopBinderContext.cs (1)
28
internal override GeneratedLabelSymbol?
GetContinueLabel
(string? labelName)
4 references to GetContinueLabel
Microsoft.CodeAnalysis.CSharp (4)
Binder\Binder.cs (2)
389
internal GeneratedLabelSymbol? ContinueLabel =>
GetContinueLabel
(labelName: null);
408
return Next.
GetContinueLabel
(labelName);
Binder\Binder_Statements.cs (1)
2970
LabelSymbol? target = isBreak ? this.GetBreakLabel(labelName) : this.
GetContinueLabel
(labelName);
Binder\LoopBinderContext.cs (1)
29
=> (labelName is null || labelName == _labelName) ? _continueLabel : NextRequired.
GetContinueLabel
(labelName);