Generated\BoundNodes.xml.Generated.cs (15)
4298public BoundCatchBlock(SyntaxNode syntax, ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll, bool hasErrors = false)
4317public BoundStatementList? ExceptionFilterPrologueOpt { get; }
4325public BoundCatchBlock Update(ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll)
4871public BoundStatementList Update(ImmutableArray<BoundStatement> statements)
4875var result = new BoundStatementList(this.Syntax, statements, this.HasErrors);
9329return VisitStatementList((BoundStatementList)node, arg);
9684public virtual R VisitStatementList(BoundStatementList node, A arg) => this.DefaultVisit(node, arg);
9925public virtual BoundNode? VisitStatementList(BoundStatementList node) => this.DefaultVisit(node);
10532public override BoundNode? VisitStatementList(BoundStatementList node)
11823BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
11908public override BoundNode? VisitStatementList(BoundStatementList node)
13960BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
16578public override TreeDumperNode VisitStatementList(BoundStatementList node, object? arg) => new TreeDumperNode("statementList", null, new TreeDumperNode[]