Base:
property
Arguments
Microsoft.CodeAnalysis.CSharp.BoundObjectCreationExpressionBase.Arguments
1 write to Arguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6632
this.
Arguments
= arguments;
10 references to Arguments
Microsoft.CodeAnalysis.CSharp (10)
BoundTree\Expression.cs (1)
149
protected override ImmutableArray<BoundNode?> Children => StaticCast<BoundNode?>.From(this.
Arguments
.AddRange(BoundObjectCreationExpression.GetChildInitializers(this.InitializerExpressionOpt)));
FlowAnalysis\AbstractFlowPass.cs (1)
1145
VisitArguments(node.
Arguments
, node.ArgumentRefKindsOpt, null);
Generated\BoundNodes.xml.Generated.cs (5)
6653
if (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))
10516
this.VisitList(node.
Arguments
);
11819
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
14114
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
16529
new TreeDumperNode("arguments", null, from x in node.
Arguments
select Visit(x, null)),
Lowering\LocalRewriter\LocalRewriter_ObjectCreationExpression.cs (2)
19
AssertNoImplicitInterpolatedStringHandlerConversions(node.
Arguments
);
20
var loweredArguments = VisitList(node.
Arguments
);
Operations\CSharpOperationFactory.cs (1)
750
ImmutableArray<IOperation> arguments = CreateFromArray<BoundExpression, IOperation>(boundDynamicObjectCreationExpression.
Arguments
);