15 references to CatchBlocks
Microsoft.CodeAnalysis.VisualBasic (15)
Analysis\FlowAnalysis\AbstractFlowPass.vb (1)
2017
For Each catchBlock In node.
CatchBlocks
Analysis\FlowAnalysis\ControlFlowPass.vb (1)
121
If node.
CatchBlocks
.IsEmpty Then
Binding\Binder_Lambda.vb (1)
615
VisitList(node.
CatchBlocks
)
Binding\Binder_Statements.vb (1)
505
VisitList(node.
CatchBlocks
)
CodeGen\EmitStatement.vb (3)
117
Debug.Assert(Not statement.
CatchBlocks
.IsDefault)
125
Dim emitNestedScopes As Boolean = (Not emitCatchesOnly AndAlso (statement.
CatchBlocks
.Length > 0) AndAlso (statement.FinallyBlockOpt IsNot Nothing))
144
For Each catchBlock In statement.
CatchBlocks
CodeGen\Optimizer\StackScheduler.Analyzer.vb (1)
1081
Dim catchBlocks As ImmutableArray(Of BoundCatchBlock) = Me.VisitList(node.
CatchBlocks
)
Generated\BoundNodes.xml.Generated.vb (4)
5795
If tryBlock IsNot Me.TryBlock OrElse catchBlocks <> Me.
CatchBlocks
OrElse finallyBlockOpt IsNot Me.FinallyBlockOpt OrElse exitLabelOpt IsNot Me.ExitLabelOpt Then
11642
Me.VisitList(node.
CatchBlocks
)
12670
Dim catchBlocks As ImmutableArray(Of BoundCatchBlock) = Me.VisitList(node.
CatchBlocks
)
13999
New TreeDumperNode("catchBlocks", Nothing, From x In node.
CatchBlocks
Select Visit(x, Nothing)),
Lowering\LocalRewriter\LocalRewriter_Try.vb (1)
19
Dim rewrittenCatchBlocks = VisitList(node.
CatchBlocks
)
Lowering\StateMachineRewriter\StateMachineRewriter.StateMachineMethodToClassRewriter.vb (1)
384
Dim catchBlocks As ImmutableArray(Of BoundCatchBlock) = Me.VisitList(node.
CatchBlocks
)
Operations\VisualBasicOperationFactory.vb (1)
1263
Dim catches As ImmutableArray(Of ICatchClauseOperation) = CreateFromArray(Of BoundCatchBlock, ICatchClauseOperation)(boundTryStatement.
CatchBlocks
)