Base:
method
VisitCatchBlock
Microsoft.CodeAnalysis.CSharp.BoundTreeVisitor.VisitCatchBlock(Microsoft.CodeAnalysis.CSharp.BoundCatchBlock)
5 overrides of VisitCatchBlock
Microsoft.CodeAnalysis.CSharp (5)
Binder\RefSafetyAnalysis.cs (1)
421public override BoundNode? VisitCatchBlock(BoundCatchBlock node)
BoundTree\BoundNode.cs (1)
686public override BoundNode? VisitCatchBlock(BoundCatchBlock node)
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (1)
847public override BoundNode VisitCatchBlock(BoundCatchBlock node)
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (1)
425public override BoundNode VisitCatchBlock(BoundCatchBlock node)
Lowering\StateMachineRewriter\IteratorAndAsyncCaptureWalker.cs (1)
381public override BoundNode VisitCatchBlock(BoundCatchBlock node)
5 references to VisitCatchBlock
Microsoft.CodeAnalysis.CSharp (5)
Binder\RefSafetyAnalysis.cs (1)
424return base.VisitCatchBlock(node);
BoundTree\BoundNode.cs (1)
689base.VisitCatchBlock(node);
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (1)
852var result = base.VisitCatchBlock(node);
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (1)
429var result = base.VisitCatchBlock(node);
Lowering\StateMachineRewriter\IteratorAndAsyncCaptureWalker.cs (1)
384return base.VisitCatchBlock(node);