14 references to BoundGotoStatement
Microsoft.CodeAnalysis.VisualBasic (14)
Binding\Binder_Statements.vb (1)
812
Return New
BoundGotoStatement
(node, symbol, boundLabel, hasErrors:=hasErrors)
Generated\BoundNodes.xml.Generated.vb (1)
6612
Dim result = New
BoundGotoStatement
(Me.Syntax, label, labelExpressionOpt, Me.HasErrors)
Lowering\LambdaRewriter\LambdaRewriter.vb (1)
1352
node = New
BoundGotoStatement
(node.Syntax, node.Label, node.LabelExpressionOpt, True)
Lowering\LocalRewriter\LocalRewriter_Continue.vb (1)
15
Dim boundGoto As BoundStatement = New
BoundGotoStatement
(node.Syntax, node.Label, Nothing)
Lowering\LocalRewriter\LocalRewriter_DoLoop.vb (2)
200
New
BoundGotoStatement
(syntax.DoStatement, startLabel, Nothing),
209
New
BoundGotoStatement
(node.Syntax, startLabel, Nothing),
Lowering\LocalRewriter\LocalRewriter_Exit.vb (1)
15
Dim boundGoto As BoundStatement = New
BoundGotoStatement
(node.Syntax, node.Label, Nothing)
Lowering\LocalRewriter\LocalRewriter_ForTo.vb (1)
260
gotoPostIncrement = New
BoundGotoStatement
(blockSyntax, postIncrementLabel, Nothing)
Lowering\LocalRewriter\LocalRewriter_If.vb (1)
205
New
BoundGotoStatement
(syntaxNode, afterif, Nothing),
Lowering\LocalRewriter\LocalRewriter_Return.vb (2)
81
Dim jump As BoundStatement = New
BoundGotoStatement
(syntaxNode, node.ExitLabelOpt, Nothing)
89
Return New
BoundGotoStatement
(node.Syntax, node.ExitLabelOpt, Nothing)
Lowering\LocalRewriter\LocalRewriter_UnstructuredExceptionHandling.vb (1)
453
_unstructuredExceptionHandling.ResumeTargets.Add(New
BoundGotoStatement
(syntax, targetResumeLabel, Nothing))
Lowering\LocalRewriter\LocalRewriter_While.vb (1)
131
Dim gotoContinue As BoundStatement = New
BoundGotoStatement
(statementSyntax, continueLabel, Nothing)
Lowering\SyntheticBoundNodeFactory.vb (1)
742
Dim boundNode = New
BoundGotoStatement
(_syntax, label, Nothing)