9 references to ExitLabelOpt
Microsoft.CodeAnalysis.VisualBasic (9)
Analysis\FlowAnalysis\AbstractFlowPass.vb (1)
459Return If(gotoOnly, Nothing, DirectCast(branch, BoundReturnStatement).ExitLabelOpt)
BoundTree\BoundReturnStatement.vb (1)
14Return Me.ExitLabelOpt is nothing
CodeGen\Optimizer\StackScheduler.Analyzer.vb (1)
1154Return node.Update(expressionOpt, node.FunctionLocalOpt, node.ExitLabelOpt)
Generated\BoundNodes.xml.Generated.vb (3)
2803If expressionOpt IsNot Me.ExpressionOpt OrElse functionLocalOpt IsNot Me.FunctionLocalOpt OrElse exitLabelOpt IsNot Me.ExitLabelOpt Then 12325Return node.Update(expressionOpt, node.FunctionLocalOpt, node.ExitLabelOpt) 13526New TreeDumperNode("exitLabelOpt", node.ExitLabelOpt, Nothing)
Lowering\LocalRewriter\LocalRewriter_Return.vb (3)
81Dim jump As BoundStatement = New BoundGotoStatement(syntaxNode, node.ExitLabelOpt, Nothing) 89Return New BoundGotoStatement(node.Syntax, node.ExitLabelOpt, Nothing) 108Debug.Assert(node.ExitLabelOpt Is Nothing)