Generated\BoundNodes.xml.Generated.cs (17)
4317public BoundLiteral Update(ConstantValue? constantValueOpt, TypeSymbol? type)
4321var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.HasErrors);
7912public BoundStringInsert(SyntaxNode syntax, BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall, bool hasErrors = false)
7927public BoundLiteral? Format { get; }
7933public BoundStringInsert Update(BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall)
9055return VisitLiteral((BoundLiteral)node, arg);
9415public virtual R VisitLiteral(BoundLiteral node, A arg) => this.DefaultVisit(node, arg);
9651public virtual BoundNode? VisitLiteral(BoundLiteral node) => this.DefaultVisit(node);
10227public override BoundNode? VisitLiteral(BoundLiteral node) => null;
11441public override BoundNode? VisitLiteral(BoundLiteral node)
12041BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
13472public override BoundNode? VisitLiteral(BoundLiteral node)
13479BoundLiteral updatedNode = node.Update(node.ConstantValueOpt, infoAndType.Type);
14676BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
15942public override TreeDumperNode VisitLiteral(BoundLiteral node, object? arg) => new TreeDumperNode("literal", null, new TreeDumperNode[]