11 references to ResumeStatementKind
Microsoft.CodeAnalysis.VisualBasic (11)
Binding\Binder_Statements.vb (1)
571
If node.ResumeKind <>
ResumeStatementKind
.Label AndAlso _resumeWithoutLabel Is Nothing Then
BoundTree\BoundResumeStatement.vb (3)
20
Me.New(syntax, If(isNext,
ResumeStatementKind
.Next,
ResumeStatementKind
.Plain), Nothing, Nothing)
24
Me.New(syntax,
ResumeStatementKind
.Label, label, labelExpressionOpt, hasErrors)
Generated\BoundNodes.xml.Generated.vb (4)
8323
Public Sub New(syntax As SyntaxNode, resumeKind As
ResumeStatementKind
, labelOpt As LabelSymbol, labelExpressionOpt As BoundExpression, Optional hasErrors As Boolean = False)
8336
Private ReadOnly _ResumeKind As
ResumeStatementKind
8337
Public ReadOnly Property ResumeKind As
ResumeStatementKind
8362
Public Function Update(resumeKind As
ResumeStatementKind
, labelOpt As LabelSymbol, labelExpressionOpt As BoundExpression) As BoundResumeStatement
Lowering\LocalRewriter\LocalRewriter_UnstructuredExceptionHandling.vb (3)
420
Case
ResumeStatementKind
.Label
431
Case
ResumeStatementKind
.Next
435
Debug.Assert(node.ResumeKind =
ResumeStatementKind
.Plain)