Generated\BoundNodes.xml.Generated.cs (17)
4318public BoundLiteral Update(ConstantValue? constantValueOpt, TypeSymbol? type)
4322var result = new BoundLiteral(this.Syntax, constantValueOpt, type, this.HasErrors);
7913public BoundStringInsert(SyntaxNode syntax, BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall, bool hasErrors = false)
7928public BoundLiteral? Format { get; }
7934public BoundStringInsert Update(BoundExpression value, BoundExpression? alignment, BoundLiteral? format, bool isInterpolatedStringHandlerAppendCall)
9092return VisitLiteral((BoundLiteral)node, arg);
9452public virtual R VisitLiteral(BoundLiteral node, A arg) => this.DefaultVisit(node, arg);
9688public virtual BoundNode? VisitLiteral(BoundLiteral node) => this.DefaultVisit(node);
10264public override BoundNode? VisitLiteral(BoundLiteral node) => null;
11478public override BoundNode? VisitLiteral(BoundLiteral node)
12078BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
13509public override BoundNode? VisitLiteral(BoundLiteral node)
13516BoundLiteral updatedNode = node.Update(node.ConstantValueOpt, infoAndType.Type);
14713BoundLiteral? format = (BoundLiteral?)this.Visit(node.Format);
15979public override TreeDumperNode VisitLiteral(BoundLiteral node, object? arg) => new TreeDumperNode("literal", null, new TreeDumperNode[]