Generated\BoundNodes.xml.Generated.cs (17)
4309public BoundLiteral Update(ConstantValue? constantValueOpt, TypeSymbol? type)
4313var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.HasErrors);
7904public BoundStringInsert(SyntaxNode syntax, BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall, bool hasErrors = false)
7919public BoundLiteral? Format { get; }
7925public BoundStringInsert Update(BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall)
9083return VisitLiteral((BoundLiteral)node, arg);
9443public virtual R VisitLiteral(BoundLiteral node, A arg) => this.DefaultVisit(node, arg);
9679public virtual BoundNode? VisitLiteral(BoundLiteral node) => this.DefaultVisit(node);
10255public override BoundNode? VisitLiteral(BoundLiteral node) => null;
11544public override BoundNode? VisitLiteral(BoundLiteral node)
12202BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
13624public override BoundNode? VisitLiteral(BoundLiteral node)
13631BoundLiteral updatedNode = node.Update(node.ConstantValueOpt, infoAndType.Type);
14828BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
16095public override TreeDumperNode VisitLiteral(BoundLiteral node, object? arg) => new TreeDumperNode("literal", null, new TreeDumperNode[]