Generated\BoundNodes.xml.Generated.cs (17)
4372public BoundLiteral Update(ConstantValue? constantValueOpt, TypeSymbol? type)
4376var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.HasErrors);
8019public BoundStringInsert(SyntaxNode syntax, BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall, bool hasErrors = false)
8034public BoundLiteral? Format { get; }
8040public BoundStringInsert Update(BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall)
9200return VisitLiteral((BoundLiteral)node, arg);
9563public virtual R VisitLiteral(BoundLiteral node, A arg) => this.DefaultVisit(node, arg);
9801public virtual BoundNode? VisitLiteral(BoundLiteral node) => this.DefaultVisit(node);
10380public override BoundNode? VisitLiteral(BoundLiteral node) => null;
11684public override BoundNode? VisitLiteral(BoundLiteral node)
12347BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
13795public override BoundNode? VisitLiteral(BoundLiteral node)
13802BoundLiteral updatedNode = node.Update(node.ConstantValueOpt, infoAndType.Type);
14999BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
16266public override TreeDumperNode VisitLiteral(BoundLiteral node, object? arg) => new TreeDumperNode("literal", null, new TreeDumperNode[]