1 instantiation of BoundDefaultLiteral
Microsoft.CodeAnalysis.CSharp (1)
Binder\Binder_Expressions.cs (1)
683return new BoundDefaultLiteral(node);
20 references to BoundDefaultLiteral
Microsoft.CodeAnalysis.CSharp (20)
Binder\Binder_Expressions.cs (2)
345case BoundDefaultLiteral defaultExpr: 6808if ((boundLeft is BoundDefaultLiteral || boundLeft is BoundDefaultExpression) && boundLeft.ConstantValueOpt == ConstantValue.Null &&
BoundTree\BoundNode_Source.cs (1)
325case BoundDefaultLiteral _:
BoundTree\BoundTreeVisitors.cs (1)
56return VisitDefaultLiteral(node as BoundDefaultLiteral, arg);
FlowAnalysis\AbstractFlowPass.cs (1)
3249public override BoundNode VisitDefaultLiteral(BoundDefaultLiteral node)
FlowAnalysis\NullableWalker.cs (1)
10555public override BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node)
Generated\BoundNodes.xml.Generated.cs (9)
2697public BoundDefaultLiteral Update() 8645return VisitDefaultLiteral((BoundDefaultLiteral)node, arg); 9035public virtual R VisitDefaultLiteral(BoundDefaultLiteral node, A arg) => this.DefaultVisit(node, arg); 9263public virtual BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node) => this.DefaultVisit(node); 9663public override BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node) => null; 10810public override BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node) 12714public override BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node) 12721BoundDefaultLiteral updatedNode = node.Update(); 15017public 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)
390public override BoundNode VisitDefaultLiteral(BoundDefaultLiteral node) 1031public override BoundNode? VisitDefaultLiteral(BoundDefaultLiteral node)
Operations\CSharpOperationFactory.cs (2)
104return CreateBoundDefaultLiteralOperation((BoundDefaultLiteral)boundNode); 1217private IDefaultValueOperation CreateBoundDefaultLiteralOperation(BoundDefaultLiteral boundDefaultLiteral)