Generated\BoundNodes.xml.Generated.cs (15)
4314public BoundCatchBlock(SyntaxNode syntax, ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll, bool hasErrors = false)
4333public BoundStatementList? ExceptionFilterPrologueOpt { get; }
4341public BoundCatchBlock Update(ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll)
4887public BoundStatementList Update(ImmutableArray<BoundStatement> statements)
4891var result = new BoundStatementList(this.Syntax, statements, this.HasErrors);
9226return VisitStatementList((BoundStatementList)node, arg);
9575public virtual R VisitStatementList(BoundStatementList node, A arg) => this.DefaultVisit(node, arg);
9813public virtual BoundNode? VisitStatementList(BoundStatementList node) => this.DefaultVisit(node);
10405public override BoundNode? VisitStatementList(BoundStatementList node)
11676BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
11761public override BoundNode? VisitStatementList(BoundStatementList node)
13787BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
16374public override TreeDumperNode VisitStatementList(BoundStatementList node, object? arg) => new TreeDumperNode("statementList", null, new TreeDumperNode[]