Generated\BoundNodes.xml.Generated.cs (15)
4260public BoundCatchBlock(SyntaxNode syntax, ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll, bool hasErrors = false)
4279public BoundStatementList? ExceptionFilterPrologueOpt { get; }
4287public BoundCatchBlock Update(ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll)
4833public BoundStatementList Update(ImmutableArray<BoundStatement> statements)
4837var result = new BoundStatementList(this.Syntax, statements, this.HasErrors);
9120return VisitStatementList((BoundStatementList)node, arg);
9466public virtual R VisitStatementList(BoundStatementList node, A arg) => this.DefaultVisit(node, arg);
9702public virtual BoundNode? VisitStatementList(BoundStatementList node) => this.DefaultVisit(node);
10291public override BoundNode? VisitStatementList(BoundStatementList node)
11472BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
11546public override BoundNode? VisitStatementList(BoundStatementList node)
13503BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
16089public override TreeDumperNode VisitStatementList(BoundStatementList node, object? arg) => new TreeDumperNode("statementList", null, new TreeDumperNode[]