Generated\BoundNodes.xml.Generated.cs (17)
4316public BoundLiteral Update(ConstantValue? constantValueOpt, TypeSymbol? type)
4320var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.HasErrors);
7911public BoundStringInsert(SyntaxNode syntax, BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall, bool hasErrors = false)
7926public BoundLiteral? Format { get; }
7932public BoundStringInsert Update(BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall)
9090return VisitLiteral((BoundLiteral)node, arg);
9450public virtual R VisitLiteral(BoundLiteral node, A arg) => this.DefaultVisit(node, arg);
9686public virtual BoundNode? VisitLiteral(BoundLiteral node) => this.DefaultVisit(node);
10262public override BoundNode? VisitLiteral(BoundLiteral node) => null;
11549public override BoundNode? VisitLiteral(BoundLiteral node)
12207BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
13652public override BoundNode? VisitLiteral(BoundLiteral node)
13659BoundLiteral updatedNode = node.Update(node.ConstantValueOpt, infoAndType.Type);
14856BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
16121public override TreeDumperNode VisitLiteral(BoundLiteral node, object? arg) => new TreeDumperNode("literal", null, new TreeDumperNode[]