Base:
method
VisitCatchBlock
Microsoft.CodeAnalysis.CSharp.BoundTreeVisitor.VisitCatchBlock(Microsoft.CodeAnalysis.CSharp.BoundCatchBlock)
5 overrides of VisitCatchBlock
Microsoft.CodeAnalysis.CSharp (5)
Binder\RefSafetyAnalysis.cs (1)
371public override BoundNode? VisitCatchBlock(BoundCatchBlock node)
BoundTree\BoundNode.cs (1)
624public override BoundNode? VisitCatchBlock(BoundCatchBlock node)
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (1)
814public override BoundNode VisitCatchBlock(BoundCatchBlock node)
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (1)
407public override BoundNode VisitCatchBlock(BoundCatchBlock node)
Lowering\StateMachineRewriter\IteratorAndAsyncCaptureWalker.cs (1)
355public override BoundNode VisitCatchBlock(BoundCatchBlock node)
5 references to VisitCatchBlock
Microsoft.CodeAnalysis.CSharp (5)
Binder\RefSafetyAnalysis.cs (1)
374return base.VisitCatchBlock(node);
BoundTree\BoundNode.cs (1)
627base.VisitCatchBlock(node);
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (1)
819var result = base.VisitCatchBlock(node);
Lowering\ClosureConversion\ClosureConversion.Analysis.Tree.cs (1)
411var result = base.VisitCatchBlock(node);
Lowering\StateMachineRewriter\IteratorAndAsyncCaptureWalker.cs (1)
358return base.VisitCatchBlock(node);