20 references to BoundDefaultLiteral
Microsoft.CodeAnalysis.CSharp (20)
Binder\Binder_Expressions.cs (2)
348case BoundDefaultLiteral defaultExpr: 7874if ((boundLeft is BoundDefaultLiteral || boundLeft is BoundDefaultExpression) && boundLeft.ConstantValueOpt == ConstantValue.Null &&
BoundTree\BoundNode_Source.cs (1)
346case BoundDefaultLiteral _:
BoundTree\BoundTreeVisitors.cs (1)
56return VisitDefaultLiteral(node as BoundDefaultLiteral, arg);
FlowAnalysis\AbstractFlowPass.cs (1)
3441public override BoundNode VisitDefaultLiteral(BoundDefaultLiteral node)
FlowAnalysis\NullableWalker.cs (1)
11476public override BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node)
Generated\BoundNodes.xml.Generated.cs (9)
2808public BoundDefaultLiteral Update() 8969return VisitDefaultLiteral((BoundDefaultLiteral)node, arg); 9372public virtual R VisitDefaultLiteral(BoundDefaultLiteral node, A arg) => this.DefaultVisit(node, arg); 9608public virtual BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node) => this.DefaultVisit(node); 10020public override BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node) => null; 11205public override BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node) 13181public override BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node) 13188BoundDefaultLiteral updatedNode = node.Update(); 15577public override TreeDumperNode VisitDefaultLiteral(BoundDefaultLiteral node, object? arg) => new TreeDumperNode("defaultLiteral", null, new TreeDumperNode[]
Lowering\Extensions.cs (1)
91if (expr is BoundDefaultLiteral || expr is BoundDefaultExpression)
Lowering\LocalRewriter\LocalRewriter.cs (2)
455public override BoundNode VisitDefaultLiteral(BoundDefaultLiteral node) 1172public override BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node)
Operations\CSharpOperationFactory.cs (2)
106return CreateBoundDefaultLiteralOperation((BoundDefaultLiteral)boundNode); 1284private IDefaultValueOperation CreateBoundDefaultLiteralOperation(BoundDefaultLiteral boundDefaultLiteral)