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