1 write to Arguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1442
this.
Arguments
= arguments;
22 references to Arguments
Microsoft.CodeAnalysis.CSharp (22)
Binder\Binder.ValueChecks.cs (4)
3044
ptrInvocation.
Arguments
,
3377
functionPointerInvocation.
Arguments
,
3602
ptrInvocation.
Arguments
,
4033
ptrInvocation.
Arguments
,
Binder\RefSafetyAnalysis.cs (2)
683
using var _ = GetArgumentPlaceholders(receiverOpt: null, node.
Arguments
);
694
node.
Arguments
,
BoundTree\Expression.cs (1)
185
ImmutableArray<BoundNode> IBoundInvalidNode.InvalidNodeChildren => CSharpOperationFactory.CreateInvalidChildrenFromArgumentsExpression(receiverOpt: this.InvokedExpression,
Arguments
);
CodeGen\EmitExpression.cs (3)
3749
if (ptrInvocation.
Arguments
.Length > 0)
3756
EmitArguments(ptrInvocation.
Arguments
, method.Parameters, ptrInvocation.ArgumentRefKindsOpt);
3757
var stackBehavior = GetCallStackBehavior(ptrInvocation.FunctionPointer.Signature, ptrInvocation.
Arguments
);
FlowAnalysis\AbstractFlowPass.cs (1)
3553
VisitArguments(node.
Arguments
, node.ArgumentRefKindsOpt, node.FunctionPointer.Signature);
FlowAnalysis\NullableWalker.cs (1)
11189
node.
Arguments
,
Generated\BoundNodes.xml.Generated.cs (5)
1458
if (invokedExpression != this.InvokedExpression || arguments != this.
Arguments
|| argumentRefKindsOpt != this.ArgumentRefKindsOpt || resultKind != this.ResultKind || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
9527
this.VisitList(node.
Arguments
);
10602
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
12207
ImmutableArray<BoundExpression> arguments = this.VisitList(node.
Arguments
);
14700
new TreeDumperNode("arguments", null, from x in node.
Arguments
select Visit(x, null)),
Lowering\Instrumentation\LocalStateTracingInstrumenter.cs (1)
552
=> InstrumentCall(base.InstrumentFunctionPointerInvocation(original, rewritten), original.
Arguments
, original.ArgumentRefKindsOpt);
Lowering\LocalRewriter\LocalRewriter_FunctionPointerInvocation.cs (2)
21
AssertNoImplicitInterpolatedStringHandlerConversions(node.
Arguments
, allowConversionsWithNoContext: true);
29
node.
Arguments
,
Lowering\SpillSequenceSpiller.cs (1)
1014
var arguments = this.VisitExpressionList(ref builder, node.
Arguments
, node.ArgumentRefKindsOpt);
Operations\CSharpOperationFactory_Methods.cs (1)
266
boundFunctionPointerInvocation.
Arguments
,