1 write to Arguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5939this.Arguments = arguments;
22 references to Arguments
Microsoft.CodeAnalysis.CSharp (22)
Binder\Binder_Conversions.cs (1)
2157return dynamicInitializer.Arguments[0];
Binder\Binder_Expressions.cs (1)
6673dynamicInvocation.Arguments,
BoundTree\Expression.cs (1)
121protected override ImmutableArray<BoundNode?> Children => StaticCast<BoundNode?>.From(this.Arguments.Insert(0, this.Expression));
FlowAnalysis\AbstractFlowPass.cs (2)
1165VisitArguments(node.Arguments, node.ArgumentRefKindsOpt, null, default, false); 3664VisitArguments(node.Arguments, default(ImmutableArray<RefKind>), method: null, default, false);
FlowAnalysis\NullableWalker.cs (1)
12813VisitArgumentsEvaluate(node.Arguments, node.ArgumentRefKindsOpt, parameterAnnotationsOpt: default, defaultArguments: default);
Generated\BoundNodes.xml.Generated.cs (10)
5972if (argumentNamesOpt != this.ArgumentNamesOpt || argumentRefKindsOpt != this.ArgumentRefKindsOpt || applicableMethods != this.ApplicableMethods || expression != this.Expression || arguments != this.Arguments || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 7031if (applicableMethods != this.ApplicableMethods || expression != this.Expression || arguments != this.Arguments || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10576this.VisitList(node.Arguments); 10709this.VisitList(node.Arguments); 11964ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 12157ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 14128ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 14562ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 16634new TreeDumperNode("arguments", null, from x in node.Arguments select Visit(x, null)), 16943new TreeDumperNode("arguments", null, from x in node.Arguments select Visit(x, null)),
Lowering\LocalRewriter\LocalRewriter_Call.cs (2)
26AssertNoImplicitInterpolatedStringHandlerConversions(node.Arguments); 27var loweredArguments = VisitList(node.Arguments);
Lowering\LocalRewriter\LocalRewriter_ObjectOrCollectionInitializerExpression.cs (1)
159var rewrittenArguments = VisitList(initializer.Arguments);
Operations\CSharpOperationFactory.cs (3)
794ImmutableArray<IOperation> arguments = CreateFromArray<BoundExpression, IOperation>(boundDynamicInvocation.Arguments); 992ImmutableArray<IOperation> arguments = CreateFromArray<BoundExpression, IOperation>(boundCollectionElementInitializer.Arguments); 2359(value, alignment, format) = getCallInfo(dynamicInvocation.Arguments, dynamicInvocation.ArgumentNamesOpt, currentPosition);