Generated\BoundNodes.xml.Generated.cs (15)
4258public BoundCatchBlock(SyntaxNode syntax, ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll, bool hasErrors = false)
4277public BoundStatementList? ExceptionFilterPrologueOpt { get; }
4285public BoundCatchBlock Update(ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll)
4831public BoundStatementList Update(ImmutableArray<BoundStatement> statements)
4835var result = new BoundStatementList(this.Syntax, statements, this.HasErrors);
9118return VisitStatementList((BoundStatementList)node, arg);
9464public virtual R VisitStatementList(BoundStatementList node, A arg) => this.DefaultVisit(node, arg);
9700public virtual BoundNode? VisitStatementList(BoundStatementList node) => this.DefaultVisit(node);
10289public override BoundNode? VisitStatementList(BoundStatementList node)
11470BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
11544public override BoundNode? VisitStatementList(BoundStatementList node)
13500BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
16085public override TreeDumperNode VisitStatementList(BoundStatementList node, object? arg) => new TreeDumperNode("statementList", null, new TreeDumperNode[]