13 references to ResumeWithoutLabelOpt
Microsoft.CodeAnalysis.VisualBasic (13)
BoundTree\BoundUnstructuredExceptionHandlingStatement.vb (5)
16
Debug.Assert(Me.
ResumeWithoutLabelOpt
Is Nothing OrElse Me.ContainsResume)
18
If Me.
ResumeWithoutLabelOpt
IsNot Nothing Then
19
Debug.Assert(Me.
ResumeWithoutLabelOpt
.Kind = SyntaxKind.OnErrorResumeNextStatement OrElse
20
Me.
ResumeWithoutLabelOpt
.Kind = SyntaxKind.ResumeNextStatement OrElse
21
Me.
ResumeWithoutLabelOpt
.Kind = SyntaxKind.ResumeStatement)
Generated\BoundNodes.xml.Generated.vb (3)
8495
If containsOnError <> Me.ContainsOnError OrElse containsResume <> Me.ContainsResume OrElse resumeWithoutLabelOpt IsNot Me.
ResumeWithoutLabelOpt
OrElse trackLineNumber <> Me.TrackLineNumber OrElse body IsNot Me.Body Then
13027
Return node.Update(node.ContainsOnError, node.ContainsResume, node.
ResumeWithoutLabelOpt
, node.TrackLineNumber, body)
14468
New TreeDumperNode("resumeWithoutLabelOpt", node.
ResumeWithoutLabelOpt
, Nothing),
Lowering\LocalRewriter\LocalRewriter_UnstructuredExceptionHandling.vb (5)
152
If node.
ResumeWithoutLabelOpt
IsNot Nothing Then
179
If node.
ResumeWithoutLabelOpt
IsNot Nothing Then
223
onErrorSwitchJumps(s_activeHandler_ResumeNext) = nodeFactory.Goto(If(node.
ResumeWithoutLabelOpt
IsNot Nothing,
235
If(node.
ResumeWithoutLabelOpt
IsNot Nothing AndAlso OptimizationLevelIsDebug,
451
Dim targetResumeLabel = New GeneratedUnstructuredExceptionHandlingResumeLabel(_unstructuredExceptionHandling.Context.
ResumeWithoutLabelOpt
)