Generated\BoundNodes.xml.Generated.cs (15)
4265public BoundCatchBlock(SyntaxNode syntax, ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll, bool hasErrors = false)
4284public BoundStatementList? ExceptionFilterPrologueOpt { get; }
4292public BoundCatchBlock Update(ImmutableArray<LocalSymbol> locals, BoundExpression? exceptionSourceOpt, TypeSymbol? exceptionTypeOpt, BoundStatementList? exceptionFilterPrologueOpt, BoundExpression? exceptionFilterOpt, BoundBlock body, bool isSynthesizedAsyncCatchAll)
4838public BoundStatementList Update(ImmutableArray<BoundStatement> statements)
4842var result = new BoundStatementList(this.Syntax, statements, this.HasErrors);
9129return VisitStatementList((BoundStatementList)node, arg);
9475public virtual R VisitStatementList(BoundStatementList node, A arg) => this.DefaultVisit(node, arg);
9711public virtual BoundNode? VisitStatementList(BoundStatementList node) => this.DefaultVisit(node);
10301public override BoundNode? VisitStatementList(BoundStatementList node)
11559BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
11644public override BoundNode? VisitStatementList(BoundStatementList node)
13648BoundStatementList? exceptionFilterPrologueOpt = (BoundStatementList?)this.Visit(node.ExceptionFilterPrologueOpt);
16227public override TreeDumperNode VisitStatementList(BoundStatementList node, object? arg) => new TreeDumperNode("statementList", null, new TreeDumperNode[]