Generated\BoundNodes.xml.Generated.cs (17)
4342public BoundLiteral Update(ConstantValue? constantValueOpt, TypeSymbol? type)
4346var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.HasErrors);
7945public BoundStringInsert(SyntaxNode syntax, BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall, bool hasErrors = false)
7960public BoundLiteral? Format { get; }
7966public BoundStringInsert Update(BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall)
9124return VisitLiteral((BoundLiteral)node, arg);
9484public virtual R VisitLiteral(BoundLiteral node, A arg) => this.DefaultVisit(node, arg);
9720public virtual BoundNode? VisitLiteral(BoundLiteral node) => this.DefaultVisit(node);
10297public override BoundNode? VisitLiteral(BoundLiteral node) => null;
11589public override BoundNode? VisitLiteral(BoundLiteral node)
12247BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
13683public override BoundNode? VisitLiteral(BoundLiteral node)
13690BoundLiteral updatedNode = node.Update(node.ConstantValueOpt, infoAndType.Type);
14887BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
16147public override TreeDumperNode VisitLiteral(BoundLiteral node, object? arg) => new TreeDumperNode("literal", null, new TreeDumperNode[]