Generated\BoundNodes.xml.Generated.cs (15)
4297public BoundCatchBlock(SyntaxNode syntax, ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll, bool hasErrors = false)
4316public BoundStatementList? ExceptionFilterPrologueOpt { get; }
4324public BoundCatchBlock Update(ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll)
4870public BoundStatementList Update(ImmutableArray<BoundStatement> statements)
4874var result = new BoundStatementList(this.Syntax, statements, this.HasErrors);
9332return VisitStatementList((BoundStatementList)node, arg);
9687public virtual R VisitStatementList(BoundStatementList node, A arg) => this.DefaultVisit(node, arg);
9928public virtual BoundNode? VisitStatementList(BoundStatementList node) => this.DefaultVisit(node);
10535public override BoundNode? VisitStatementList(BoundStatementList node)
11828BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
11913public override BoundNode? VisitStatementList(BoundStatementList node)
13967BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
16587public override TreeDumperNode VisitStatementList(BoundStatementList node, object? arg) => new TreeDumperNode("statementList", null, new TreeDumperNode[]