Base:
property
Arguments
Microsoft.CodeAnalysis.CSharp.BoundObjectCreationExpressionBase.Arguments
1 write to Arguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6632this.Arguments = arguments;
10 references to Arguments
Microsoft.CodeAnalysis.CSharp (10)
BoundTree\Expression.cs (1)
149protected override ImmutableArray<BoundNode?> Children => StaticCast<BoundNode?>.From(this.Arguments.AddRange(BoundObjectCreationExpression.GetChildInitializers(this.InitializerExpressionOpt)));
FlowAnalysis\AbstractFlowPass.cs (1)
1145VisitArguments(node.Arguments, node.ArgumentRefKindsOpt, null);
Generated\BoundNodes.xml.Generated.cs (5)
6653if (name != this.Name || arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || argumentRefKindsOpt != this.ArgumentRefKindsOpt || initializerExpressionOpt != this.InitializerExpressionOpt || applicableMethods != this.ApplicableMethods || wasTargetTyped != this.WasTargetTyped || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10516this.VisitList(node.Arguments); 11819ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 14114ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 16529new TreeDumperNode("arguments", null, from x in node.Arguments select Visit(x, null)),
Lowering\LocalRewriter\LocalRewriter_ObjectCreationExpression.cs (2)
19AssertNoImplicitInterpolatedStringHandlerConversions(node.Arguments); 20var loweredArguments = VisitList(node.Arguments);
Operations\CSharpOperationFactory.cs (1)
750ImmutableArray<IOperation> arguments = CreateFromArray<BoundExpression, IOperation>(boundDynamicObjectCreationExpression.Arguments);