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)
2235
return dynamicInitializer.
Arguments
[0];
Binder\Binder_Expressions.cs (1)
6653
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, default, false);
3665
VisitArguments(node.
Arguments
, default(ImmutableArray<RefKind>), method: null, default, false);
FlowAnalysis\NullableWalker.cs (1)
13282
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))
10715
this.VisitList(node.
Arguments
);
10848
this.VisitList(node.
Arguments
);
12120
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
12313
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
14300
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
14734
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
16843
new TreeDumperNode("arguments", null, from x in node.
Arguments
select Visit(x, null)),
17152
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);