1 write to Arguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1454this.Arguments = arguments;
22 references to Arguments
Microsoft.CodeAnalysis.CSharp (22)
Binder\Binder.ValueChecks.cs (4)
3441ptrInvocation.Arguments, 3881functionPointerInvocation.Arguments, 4144ptrInvocation.Arguments, 4860ptrInvocation.Arguments,
Binder\RefSafetyAnalysis.cs (2)
868VisitArgumentsAndGetArgumentPlaceholders(receiverOpt: null, node.Arguments); 879node.Arguments,
BoundTree\Expression.cs (1)
185ImmutableArray<BoundNode> IBoundInvalidNode.InvalidNodeChildren => CSharpOperationFactory.CreateInvalidChildrenFromArgumentsExpression(receiverOpt: this.InvokedExpression, Arguments);
CodeGen\EmitExpression.cs (3)
4023if (ptrInvocation.Arguments.Length > 0) 4030EmitArguments(ptrInvocation.Arguments, method.Parameters, ptrInvocation.ArgumentRefKindsOpt); 4031var stackBehavior = GetCallStackBehavior(ptrInvocation.FunctionPointer.Signature, ptrInvocation.Arguments);
FlowAnalysis\AbstractFlowPass.cs (1)
3655VisitArguments(node.Arguments, node.ArgumentRefKindsOpt, node.FunctionPointer.Signature);
FlowAnalysis\NullableWalker.cs (1)
11921node.Arguments,
Generated\BoundNodes.xml.Generated.cs (5)
1470if (invokedExpression != this.InvokedExpression || arguments != this.Arguments || argumentRefKindsOpt != this.ArgumentRefKindsOpt || resultKind != this.ResultKind || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9875this.VisitList(node.Arguments); 10979ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 12639ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 15235new TreeDumperNode("arguments", null, from x in node.Arguments select Visit(x, null)),
Lowering\Instrumentation\LocalStateTracingInstrumenter.cs (1)
550=> InstrumentCall(base.InstrumentFunctionPointerInvocation(original, rewritten), original.Arguments, original.ArgumentRefKindsOpt);
Lowering\LocalRewriter\LocalRewriter_FunctionPointerInvocation.cs (2)
21AssertNoImplicitInterpolatedStringHandlerConversions(node.Arguments, allowConversionsWithNoContext: true); 29node.Arguments,
Lowering\SpillSequenceSpiller.cs (1)
1085var arguments = this.VisitExpressionList(ref builder, node.Arguments, node.ArgumentRefKindsOpt);
Operations\CSharpOperationFactory_Methods.cs (1)
254boundFunctionPointerInvocation.Arguments,