1 write to Arguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5974
this.
Arguments
= arguments;
22 references to Arguments
Microsoft.CodeAnalysis.CSharp (22)
Binder\Binder_Conversions.cs (1)
2210
return dynamicInitializer.
Arguments
[0];
Binder\Binder_Expressions.cs (1)
6676
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)
1214
VisitArguments(node.
Arguments
, node.ArgumentRefKindsOpt, null, default, false);
3713
VisitArguments(node.
Arguments
, default(ImmutableArray<RefKind>), method: null, default, false);
FlowAnalysis\NullableWalker.cs (1)
13234
VisitArgumentsEvaluate(node.
Arguments
, node.ArgumentRefKindsOpt, parameterAnnotationsOpt: default, defaultArguments: default);
Generated\BoundNodes.xml.Generated.cs (10)
6007
if (argumentNamesOpt != this.ArgumentNamesOpt || argumentRefKindsOpt != this.ArgumentRefKindsOpt || applicableMethods != this.ApplicableMethods || expression != this.Expression || arguments != this.
Arguments
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
7066
if (applicableMethods != this.ApplicableMethods || expression != this.Expression || arguments != this.
Arguments
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10717
this.VisitList(node.
Arguments
);
10850
this.VisitList(node.
Arguments
);
12122
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
12315
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
14302
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
14736
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
16845
new TreeDumperNode("arguments", null, from x in node.
Arguments
select Visit(x, null)),
17154
new TreeDumperNode("arguments", null, from x in node.
Arguments
select Visit(x, null)),
Lowering\LocalRewriter\LocalRewriter_Call.cs (2)
26
AssertNoImplicitInterpolatedStringHandlerConversions(node.
Arguments
);
27
var loweredArguments = VisitList(node.
Arguments
);
Lowering\LocalRewriter\LocalRewriter_ObjectOrCollectionInitializerExpression.cs (1)
159
var rewrittenArguments = VisitList(initializer.
Arguments
);
Operations\CSharpOperationFactory.cs (3)
794
ImmutableArray<IOperation> arguments = CreateFromArray<BoundExpression, IOperation>(boundDynamicInvocation.
Arguments
);
992
ImmutableArray<IOperation> arguments = CreateFromArray<BoundExpression, IOperation>(boundCollectionElementInitializer.
Arguments
);
2384
(value, alignment, format) = getCallInfo(dynamicInvocation.
Arguments
, dynamicInvocation.ArgumentNamesOpt, currentPosition);