Generated\BoundNodes.xml.Generated.cs (17)
4355public BoundLiteral Update(ConstantValue? constantValueOpt, TypeSymbol? type)
4359var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.HasErrors);
8032public BoundStringInsert(SyntaxNode syntax, BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall, bool hasErrors = false)
8047public BoundLiteral? Format { get; }
8053public BoundStringInsert Update(BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall)
9300return VisitLiteral((BoundLiteral)node, arg);
9669public virtual R VisitLiteral(BoundLiteral node, A arg) => this.DefaultVisit(node, arg);
9910public virtual BoundNode? VisitLiteral(BoundLiteral node) => this.DefaultVisit(node);
10504public override BoundNode? VisitLiteral(BoundLiteral node) => null;
11828public override BoundNode? VisitLiteral(BoundLiteral node)
12496BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
13965public override BoundNode? VisitLiteral(BoundLiteral node)
13972BoundLiteral updatedNode = node.Update(node.ConstantValueOpt, infoAndType.Type);
15169BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
16467public override TreeDumperNode VisitLiteral(BoundLiteral node, object? arg) => new TreeDumperNode("literal", null, new TreeDumperNode[]