2 instantiations of BoundContinueStatement
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Statements.cs (1)
2991: new BoundContinueStatement(node, target, label, hasErrors);
Generated\BoundNodes.xml.Generated.cs (1)
3801var result = new BoundContinueStatement(this.Syntax, label, labelExpressionOpt, this.HasErrors);
20 references to BoundContinueStatement
Microsoft.CodeAnalysis.CSharp (20)
BoundTree\BoundTreeVisitors.cs (1)
90return VisitContinueStatement(node as BoundContinueStatement, arg);
FlowAnalysis\AbstractFlowPass.cs (1)
3264public override BoundNode VisitContinueStatement(BoundContinueStatement node)
FlowAnalysis\ControlFlowPass.cs (1)
384public override BoundNode? VisitContinueStatement(BoundContinueStatement node)
FlowAnalysis\ExitPointsWalker.cs (1)
134if (_labelsInside.Contains(((BoundContinueStatement)pending.Branch).Label)) continue;
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
268public override BoundNode? VisitContinueStatement(BoundContinueStatement node)
Generated\BoundNodes.xml.Generated.cs (8)
3797public BoundContinueStatement Update(LabelSymbol label, BoundLabel? labelExpressionOpt) 3801var result = new BoundContinueStatement(this.Syntax, label, labelExpressionOpt, this.HasErrors); 9273return VisitContinueStatement((BoundContinueStatement)node, arg); 9656public virtual R VisitContinueStatement(BoundContinueStatement node, A arg) => this.DefaultVisit(node, arg); 9897public virtual BoundNode? VisitContinueStatement(BoundContinueStatement node) => this.DefaultVisit(node); 10411public override BoundNode? VisitContinueStatement(BoundContinueStatement node) 11709public override BoundNode? VisitContinueStatement(BoundContinueStatement node) 16328public 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)
164return CreateBoundContinueStatementOperation((BoundContinueStatement)boundNode); 1826private IBranchOperation CreateBoundContinueStatementOperation(BoundContinueStatement boundContinueStatement)