Generated\BoundNodes.xml.Generated.cs (15)
4243public BoundCatchBlock(SyntaxNode syntax, ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll, bool hasErrors = false)
4262public BoundStatementList? ExceptionFilterPrologueOpt { get; }
4270public BoundCatchBlock Update(ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll)
4816public BoundStatementList Update(ImmutableArray<BoundStatement> statements)
4820var result = new BoundStatementList(this.Syntax, statements, this.HasErrors);
9103return VisitStatementList((BoundStatementList)node, arg);
9449public virtual R VisitStatementList(BoundStatementList node, A arg) => this.DefaultVisit(node, arg);
9685public virtual BoundNode? VisitStatementList(BoundStatementList node) => this.DefaultVisit(node);
10274public override BoundNode? VisitStatementList(BoundStatementList node)
11530BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
11615public override BoundNode? VisitStatementList(BoundStatementList node)
13633BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
16220public override TreeDumperNode VisitStatementList(BoundStatementList node, object? arg) => new TreeDumperNode("statementList", null, new TreeDumperNode[]