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