2 instantiations of BoundContinueStatement
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Statements.cs (1)
2967
return new
BoundContinueStatement
(node, target);
Generated\BoundNodes.xml.Generated.cs (1)
3820
var result = new
BoundContinueStatement
(this.Syntax, label, this.HasErrors);
18 references to BoundContinueStatement
Microsoft.CodeAnalysis.CSharp (18)
BoundTree\BoundTreeVisitors.cs (1)
90
return VisitContinueStatement(node as
BoundContinueStatement
, arg);
FlowAnalysis\AbstractFlowPass.cs (1)
3264
public override BoundNode VisitContinueStatement(
BoundContinueStatement
node)
FlowAnalysis\ExitPointsWalker.cs (1)
134
if (_labelsInside.Contains(((
BoundContinueStatement
)pending.Branch).Label)) continue;
Generated\BoundNodes.xml.Generated.cs (8)
3816
public
BoundContinueStatement
Update(LabelSymbol label)
3820
var
result = new BoundContinueStatement(this.Syntax, label, this.HasErrors);
9292
return VisitContinueStatement((
BoundContinueStatement
)node, arg);
9675
public virtual R VisitContinueStatement(
BoundContinueStatement
node, A arg) => this.DefaultVisit(node, arg);
9916
public virtual BoundNode? VisitContinueStatement(
BoundContinueStatement
node) => this.DefaultVisit(node);
10422
public override BoundNode? VisitContinueStatement(
BoundContinueStatement
node) => null;
11714
public override BoundNode? VisitContinueStatement(
BoundContinueStatement
node)
16325
public override TreeDumperNode VisitContinueStatement(
BoundContinueStatement
node, object? arg) => new TreeDumperNode("continueStatement", null, new TreeDumperNode[]
Lowering\Instrumentation\CodeCoverageInstrumenter.cs (1)
329
public override BoundStatement InstrumentContinueStatement(
BoundContinueStatement
original, BoundStatement rewritten)
Lowering\Instrumentation\CompoundInstrumenter.cs (1)
59
public override BoundStatement InstrumentContinueStatement(
BoundContinueStatement
original, BoundStatement rewritten)
Lowering\Instrumentation\DebugInfoInjector.cs (1)
50
public override BoundStatement InstrumentContinueStatement(
BoundContinueStatement
original, BoundStatement rewritten)
Lowering\Instrumentation\Instrumenter.cs (1)
86
public virtual BoundStatement InstrumentContinueStatement(
BoundContinueStatement
original, BoundStatement rewritten)
Lowering\LocalRewriter\LocalRewriter_ContinueStatement.cs (1)
13
public override BoundNode VisitContinueStatement(
BoundContinueStatement
node)
Operations\CSharpOperationFactory.cs (2)
164
return CreateBoundContinueStatementOperation((
BoundContinueStatement
)boundNode);
1826
private IBranchOperation CreateBoundContinueStatementOperation(
BoundContinueStatement
boundContinueStatement)