1 instantiation of BoundContinueStatement
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
3759var result = new BoundContinueStatement(this.Syntax, label, this.HasErrors);
18 references to BoundContinueStatement
Microsoft.CodeAnalysis.CSharp (18)
BoundTree\BoundTreeVisitors.cs (1)
90return VisitContinueStatement(node as BoundContinueStatement, arg);
FlowAnalysis\AbstractFlowPass.cs (1)
3235public override BoundNode VisitContinueStatement(BoundContinueStatement node)
FlowAnalysis\ExitPointsWalker.cs (1)
134if (_labelsInside.Contains(((BoundContinueStatement)pending.Branch).Label)) continue;
Generated\BoundNodes.xml.Generated.cs (8)
3755public BoundContinueStatement Update(GeneratedLabelSymbol label) 3759var result = new BoundContinueStatement(this.Syntax, label, this.HasErrors); 9062return VisitContinueStatement((BoundContinueStatement)node, arg); 9436public virtual R VisitContinueStatement(BoundContinueStatement node, A arg) => this.DefaultVisit(node, arg); 9672public virtual BoundNode? VisitContinueStatement(BoundContinueStatement node) => this.DefaultVisit(node); 10171public override BoundNode? VisitContinueStatement(BoundContinueStatement node) => null; 11381public override BoundNode? VisitContinueStatement(BoundContinueStatement node) => node; 15835public override TreeDumperNode VisitContinueStatement(BoundContinueStatement node, object? arg) => new TreeDumperNode("continueStatement", null, new TreeDumperNode[]
Lowering\Instrumentation\CodeCoverageInstrumenter.cs (1)
329public override BoundStatement InstrumentContinueStatement(BoundContinueStatement original, BoundStatement rewritten)
Lowering\Instrumentation\CompoundInstrumenter.cs (1)
59public override BoundStatement InstrumentContinueStatement(BoundContinueStatement original, BoundStatement rewritten)
Lowering\Instrumentation\DebugInfoInjector.cs (1)
50public override BoundStatement InstrumentContinueStatement(BoundContinueStatement original, BoundStatement rewritten)
Lowering\Instrumentation\Instrumenter.cs (1)
86public virtual BoundStatement InstrumentContinueStatement(BoundContinueStatement original, BoundStatement rewritten)
Lowering\LocalRewriter\LocalRewriter_ContinueStatement.cs (1)
13public override BoundNode VisitContinueStatement(BoundContinueStatement node)
Operations\CSharpOperationFactory.cs (2)
165return CreateBoundContinueStatementOperation((BoundContinueStatement)boundNode); 1760private IBranchOperation CreateBoundContinueStatementOperation(BoundContinueStatement boundContinueStatement)