14 references to CatchBlocks
Microsoft.CodeAnalysis.VisualBasic (14)
Analysis\FlowAnalysis\AbstractFlowPass.vb (1)
2033For Each catchBlock In node.CatchBlocks
Analysis\FlowAnalysis\ControlFlowPass.vb (1)
121If node.CatchBlocks.IsEmpty Then
Binding\Binder_Lambda.vb (1)
615VisitList(node.CatchBlocks)
Binding\Binder_Statements.vb (1)
536VisitList(node.CatchBlocks)
CodeGen\EmitStatement.vb (3)
117Debug.Assert(Not statement.CatchBlocks.IsDefault) 125Dim emitNestedScopes As Boolean = (Not emitCatchesOnly AndAlso (statement.CatchBlocks.Length > 0) AndAlso (statement.FinallyBlockOpt IsNot Nothing)) 144For Each catchBlock In statement.CatchBlocks
CodeGen\Optimizer\StackScheduler.Analyzer.vb (1)
1081Dim catchBlocks As ImmutableArray(Of BoundCatchBlock) = Me.VisitList(node.CatchBlocks)
Generated\BoundNodes.xml.Generated.vb (4)
5814If tryBlock IsNot Me.TryBlock OrElse catchBlocks <> Me.CatchBlocks OrElse finallyBlockOpt IsNot Me.FinallyBlockOpt OrElse exitLabelOpt IsNot Me.ExitLabelOpt Then 11676Me.VisitList(node.CatchBlocks) 12704Dim catchBlocks As ImmutableArray(Of BoundCatchBlock) = Me.VisitList(node.CatchBlocks) 14036New TreeDumperNode("catchBlocks", Nothing, From x In node.CatchBlocks Select Visit(x, Nothing)),
Lowering\LocalRewriter\LocalRewriter_Try.vb (1)
19Dim rewrittenCatchBlocks = VisitList(node.CatchBlocks)
Lowering\StateMachineRewriter\StateMachineRewriter.StateMachineMethodToClassRewriter.vb (1)
385Dim catchBlocks As ImmutableArray(Of BoundCatchBlock) = Me.VisitList(node.CatchBlocks)