13 references to OnErrorStatementKind
Microsoft.CodeAnalysis.VisualBasic (13)
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 (1)
21Me.New(syntax, OnErrorStatementKind.GoToLabel, label, labelExpressionOpt, hasErrors)
Generated\BoundNodes.xml.Generated.vb (4)
8375Public Sub New(syntax As SyntaxNode, onErrorKind As OnErrorStatementKind, labelOpt As LabelSymbol, labelExpressionOpt As BoundExpression, Optional hasErrors As Boolean = False) 8388Private ReadOnly _OnErrorKind As OnErrorStatementKind 8389Public ReadOnly Property OnErrorKind As OnErrorStatementKind 8414Public 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)