14 references to OnErrorStatementKind
Microsoft.CodeAnalysis.VisualBasic (14)
Binding\Binder_Statements.vb (4)
517If node.OnErrorKind = OnErrorStatementKind.ResumeNext Then 5257Return New BoundOnErrorStatement(node, OnErrorStatementKind.GoToMinusOne, Nothing, Nothing) 5260Return New BoundOnErrorStatement(node, OnErrorStatementKind.GoToZero, Nothing, Nothing) 5263Return 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)
8358Public Sub New(syntax As SyntaxNode, onErrorKind As OnErrorStatementKind, labelOpt As LabelSymbol, labelExpressionOpt As BoundExpression, Optional hasErrors As Boolean = False) 8371Private ReadOnly _OnErrorKind As OnErrorStatementKind 8372Public ReadOnly Property OnErrorKind As OnErrorStatementKind 8397Public 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)