2 instantiations of BoundNewT
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Expressions.cs (1)
5992return new BoundNewT(node, boundInitializerOpt, wasTargetTyped, typeParameter);
Generated\BoundNodes.xml.Generated.cs (1)
6804var result = new BoundNewT(this.Syntax, initializerExpressionOpt, wasTargetTyped, type, this.HasErrors);
17 references to BoundNewT
Microsoft.CodeAnalysis.CSharp (17)
FlowAnalysis\AbstractFlowPass.cs (1)
1928public override BoundNode VisitNewT(BoundNewT node)
FlowAnalysis\NullableWalker.cs (1)
10837public override BoundNode? VisitNewT(BoundNewT node)
Generated\BoundNodes.xml.Generated.cs (10)
6800public BoundNewT Update(BoundObjectInitializerExpressionBase? initializerExpressionOpt, bool wasTargetTyped, TypeSymbol type) 6804var result = new BoundNewT(this.Syntax, initializerExpressionOpt, wasTargetTyped, type, this.HasErrors); 8869return VisitNewT((BoundNewT)node, arg); 9147public virtual R VisitNewT(BoundNewT node, A arg) => this.DefaultVisit(node, arg); 9375public virtual BoundNode? VisitNewT(BoundNewT node) => this.DefaultVisit(node); 10189public override BoundNode? VisitNewT(BoundNewT node) 11460public override BoundNode? VisitNewT(BoundNewT node) 13785public override BoundNode? VisitNewT(BoundNewT node) 13788BoundNewT updatedNode; 16038public override TreeDumperNode VisitNewT(BoundNewT node, object? arg) => new TreeDumperNode("newT", null, new TreeDumperNode[]
Lowering\ClosureConversion\ExpressionLambdaRewriter.cs (2)
223return VisitNewT((BoundNewT)node); 789private BoundExpression VisitNewT(BoundNewT node)
Lowering\LocalRewriter\LocalRewriter_ObjectCreationExpression.cs (1)
300public override BoundNode VisitNewT(BoundNewT node)
Operations\CSharpOperationFactory.cs (2)
120return CreateBoundNewTOperation((BoundNewT)boundNode); 1346private ITypeParameterObjectCreationOperation CreateBoundNewTOperation(BoundNewT boundNewT)