Generated\BoundNodes.xml.Generated.cs (17)
4375public BoundLiteral Update(ConstantValue? constantValueOpt, TypeSymbol? type)
4379var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.HasErrors);
8052public BoundStringInsert(SyntaxNode syntax, BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall, bool hasErrors = false)
8067public BoundLiteral? Format { get; }
8073public BoundStringInsert Update(BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall)
9322return VisitLiteral((BoundLiteral)node, arg);
9691public virtual R VisitLiteral(BoundLiteral node, A arg) => this.DefaultVisit(node, arg);
9932public virtual BoundNode? VisitLiteral(BoundLiteral node) => this.DefaultVisit(node);
10514public override BoundNode? VisitLiteral(BoundLiteral node) => null;
11835public override BoundNode? VisitLiteral(BoundLiteral node)
12503BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
13967public override BoundNode? VisitLiteral(BoundLiteral node)
13974BoundLiteral updatedNode = node.Update(node.ConstantValueOpt, infoAndType.Type);
15171BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
16466public override TreeDumperNode VisitLiteral(BoundLiteral node, object? arg) => new TreeDumperNode("literal", null, new TreeDumperNode[]