Generated\BoundNodes.xml.Generated.cs (15)
4262public BoundCatchBlock(SyntaxNode syntax, ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll, bool hasErrors = false)
4281public BoundStatementList? ExceptionFilterPrologueOpt { get; }
4289public BoundCatchBlock Update(ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll)
4835public BoundStatementList Update(ImmutableArray<BoundStatement> statements)
4839var result = new BoundStatementList(this.Syntax, statements, this.HasErrors);
9122return VisitStatementList((BoundStatementList)node, arg);
9468public virtual R VisitStatementList(BoundStatementList node, A arg) => this.DefaultVisit(node, arg);
9704public virtual BoundNode? VisitStatementList(BoundStatementList node) => this.DefaultVisit(node);
10293public override BoundNode? VisitStatementList(BoundStatementList node)
11549BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
11634public override BoundNode? VisitStatementList(BoundStatementList node)
13652BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
16239public override TreeDumperNode VisitStatementList(BoundStatementList node, object? arg) => new TreeDumperNode("statementList", null, new TreeDumperNode[]