2 instantiations of BoundContinueStatement
Microsoft.CodeAnalysis.VisualBasic (2)
Binding\Binder_Statements.vb (1)
4913Return New BoundContinueStatement(node, targetLabel)
Generated\BoundNodes.xml.Generated.vb (1)
5737Dim result = New BoundContinueStatement(Me.Syntax, label, Me.HasErrors)
19 references to BoundContinueStatement
Microsoft.CodeAnalysis.VisualBasic (19)
Analysis\FlowAnalysis\AbstractFlowPass.NestedTypes.vb (1)
100Return CType(Branch, BoundContinueStatement).Label
Analysis\FlowAnalysis\AbstractFlowPass.vb (2)
420Dim continueStmt = TryCast(pending.Branch, BoundContinueStatement) 2414Public Overrides Function VisitContinueStatement(node As BoundContinueStatement) As BoundNode
Analysis\FlowAnalysis\ExitPointsWalker.vb (1)
113If _labelsInside.Contains((TryCast((pending.Branch), BoundContinueStatement)).Label) Then
BoundTree\BoundTreeVisitor.vb (1)
88Return VisitContinueStatement(CType(node, BoundContinueStatement), arg)
Generated\BoundNodes.xml.Generated.vb (7)
5735Public Function Update(label As LabelSymbol) As BoundContinueStatement 9517Return VisitContinueStatement(CType(node, BoundContinueStatement), arg) 10081Public Overridable Function VisitContinueStatement(node As BoundContinueStatement, arg As A) As R 10784Public Overridable Function VisitContinueStatement(node As BoundContinueStatement) As BoundNode 11636Public Overrides Function VisitContinueStatement(node As BoundContinueStatement) As BoundNode 12664Public Overrides Function VisitContinueStatement(node As BoundContinueStatement) As BoundNode 13990Public Overrides Function VisitContinueStatement(node As BoundContinueStatement, arg As Object) As TreeDumperNode
Lowering\Instrumentation\CodeCoverageInstrumenter.vb (1)
322Public Overrides Function InstrumentContinueStatement(original As BoundContinueStatement, rewritten As BoundStatement) As BoundStatement
Lowering\Instrumentation\CompoundInstrumenter.vb (1)
43Public Overrides Function InstrumentContinueStatement(original As BoundContinueStatement, rewritten As BoundStatement) As BoundStatement
Lowering\Instrumentation\DebugInfoInjector.vb (1)
48Public Overrides Function InstrumentContinueStatement(original As BoundContinueStatement, rewritten As BoundStatement) As BoundStatement
Lowering\Instrumentation\Instrumenter.vb (1)
51Public Overridable Function InstrumentContinueStatement(original As BoundContinueStatement, rewritten As BoundStatement) As BoundStatement
Lowering\LocalRewriter\LocalRewriter_Continue.vb (1)
14Public Overrides Function VisitContinueStatement(node As BoundContinueStatement) As BoundNode
Operations\VisualBasicOperationFactory.vb (2)
200Return CreateBoundContinueStatementOperation(DirectCast(boundNode, BoundContinueStatement)) 1394Private Function CreateBoundContinueStatementOperation(boundContinueStatement As BoundContinueStatement) As IBranchOperation