Generated\BoundNodes.xml.Generated.cs (17)
4340public BoundLiteral Update(ConstantValue? constantValueOpt, TypeSymbol? type)
4344var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.HasErrors);
7943public BoundStringInsert(SyntaxNode syntax, BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall, bool hasErrors = false)
7958public BoundLiteral? Format { get; }
7964public BoundStringInsert Update(BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall)
9122return VisitLiteral((BoundLiteral)node, arg);
9482public virtual R VisitLiteral(BoundLiteral node, A arg) => this.DefaultVisit(node, arg);
9718public virtual BoundNode? VisitLiteral(BoundLiteral node) => this.DefaultVisit(node);
10295public override BoundNode? VisitLiteral(BoundLiteral node) => null;
11587public override BoundNode? VisitLiteral(BoundLiteral node)
12245BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
13681public override BoundNode? VisitLiteral(BoundLiteral node)
13688BoundLiteral updatedNode = node.Update(node.ConstantValueOpt, infoAndType.Type);
14885BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
16144public override TreeDumperNode VisitLiteral(BoundLiteral node, object? arg) => new TreeDumperNode("literal", null, new TreeDumperNode[]