1 write to Arguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5884this.Arguments = arguments;
21 references to Arguments
Microsoft.CodeAnalysis.CSharp (21)
Binder\Binder_Expressions.cs (1)
6451dynamicInvocation.Arguments,
BoundTree\Expression.cs (1)
121protected override ImmutableArray<BoundNode?> Children => StaticCast<BoundNode?>.From(this.Arguments.Insert(0, this.Expression));
FlowAnalysis\AbstractFlowPass.cs (2)
1166VisitArguments(node.Arguments, node.ArgumentRefKindsOpt, null); 3627VisitArguments(node.Arguments, default(ImmutableArray<RefKind>), method: null);
FlowAnalysis\NullableWalker.cs (1)
11674VisitArgumentsEvaluate(node.Arguments, node.ArgumentRefKindsOpt, parameterAnnotationsOpt: default, defaultArguments: default);
Generated\BoundNodes.xml.Generated.cs (10)
5917if (argumentNamesOpt != this.ArgumentNamesOpt || argumentRefKindsOpt != this.ArgumentRefKindsOpt || applicableMethods != this.ApplicableMethods || expression != this.Expression || arguments != this.Arguments || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 6930if (applicableMethods != this.ApplicableMethods || expression != this.Expression || arguments != this.Arguments || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10425this.VisitList(node.Arguments); 10551this.VisitList(node.Arguments); 11694ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 11866ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 13807ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 14241ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 16312new TreeDumperNode("arguments", null, from x in node.Arguments select Visit(x, null)), 16612new TreeDumperNode("arguments", null, from x in node.Arguments select Visit(x, null)),
Lowering\LocalRewriter\LocalRewriter_Call.cs (2)
27AssertNoImplicitInterpolatedStringHandlerConversions(node.Arguments); 28var loweredArguments = VisitList(node.Arguments);
Lowering\LocalRewriter\LocalRewriter_ObjectOrCollectionInitializerExpression.cs (1)
120var rewrittenArguments = VisitList(initializer.Arguments);
Operations\CSharpOperationFactory.cs (3)
779ImmutableArray<IOperation> arguments = CreateFromArray<BoundExpression, IOperation>(boundDynamicInvocation.Arguments); 977ImmutableArray<IOperation> arguments = CreateFromArray<BoundExpression, IOperation>(boundCollectionElementInitializer.Arguments); 2318(value, alignment, format) = getCallInfo(dynamicInvocation.Arguments, dynamicInvocation.ArgumentNamesOpt, currentPosition);