14 references to OnErrorStatementKind
Microsoft.CodeAnalysis.VisualBasic (14)
Binding\Binder_Statements.vb (4)
548If node.OnErrorKind = OnErrorStatementKind.ResumeNext Then 5288Return New BoundOnErrorStatement(node, OnErrorStatementKind.GoToMinusOne, Nothing, Nothing) 5291Return New BoundOnErrorStatement(node, OnErrorStatementKind.GoToZero, Nothing, Nothing) 5294Return New BoundOnErrorStatement(node, OnErrorStatementKind.ResumeNext, Nothing, Nothing)
BoundTree\BoundOnErrorStatement.vb (2)
21Me.New(syntax, OnErrorStatementKind.GoToLabel, label, labelExpressionOpt, hasErrors) 27Debug.Assert((Me.OnErrorKind = OnErrorStatementKind.GoToLabel) = Not (Me.LabelOpt Is Nothing AndAlso Me.LabelExpressionOpt Is Nothing))
Generated\BoundNodes.xml.Generated.vb (4)
8384Public Sub New(syntax As SyntaxNode, onErrorKind As OnErrorStatementKind, labelOpt As LabelSymbol, labelExpressionOpt As BoundExpression, Optional hasErrors As Boolean = False) 8397Private ReadOnly _OnErrorKind As OnErrorStatementKind 8398Public ReadOnly Property OnErrorKind As OnErrorStatementKind 8423Public Function Update(onErrorKind As OnErrorStatementKind, labelOpt As LabelSymbol, labelExpressionOpt As BoundExpression) As BoundOnErrorStatement
Lowering\LocalRewriter\LocalRewriter_UnstructuredExceptionHandling.vb (4)
344Case OnErrorStatementKind.GoToMinusOne 352Case OnErrorStatementKind.GoToLabel 356Case OnErrorStatementKind.ResumeNext 366Debug.Assert(node.OnErrorKind = OnErrorStatementKind.GoToZero)