Base:
method
VisitThrowStatement
Microsoft.CodeAnalysis.CSharp.BoundTreeVisitor.VisitThrowStatement(Microsoft.CodeAnalysis.CSharp.BoundThrowStatement)
3 overrides of VisitThrowStatement
Microsoft.CodeAnalysis.CSharp (3)
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (1)
693public override BoundNode VisitThrowStatement(BoundThrowStatement node)
Lowering\LocalRewriter\LocalRewriter_ThrowStatement.cs (1)
9public override BoundNode VisitThrowStatement(BoundThrowStatement node)
Lowering\SpillSequenceSpiller.cs (1)
670public override BoundNode VisitThrowStatement(BoundThrowStatement node)
2 references to VisitThrowStatement
Microsoft.CodeAnalysis.CSharp (2)
Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs (1)
699return base.VisitThrowStatement(node);
Lowering\LocalRewriter\LocalRewriter_ThrowStatement.cs (1)
11var result = (BoundStatement)base.VisitThrowStatement(node)!;