1 write to Arguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1436this.Arguments = arguments;
18 references to Arguments
Microsoft.CodeAnalysis.CSharp (18)
Binder\Binder.ValueChecks.cs (1)
169ArgsOpt = ptrInvocation.Arguments,
Binder\RefSafetyAnalysis.cs (1)
1016VisitArgumentsAndGetArgumentPlaceholders(receiverOpt: null, node.Arguments, isNewExtensionMethod: false);
BoundTree\Expression.cs (1)
185ImmutableArray<BoundNode> IBoundInvalidNode.InvalidNodeChildren => CSharpOperationFactory.CreateInvalidChildrenFromArgumentsExpression(receiverOpt: this.InvokedExpression, Arguments);
CodeGen\EmitExpression.cs (3)
4061if (ptrInvocation.Arguments.Length > 0) 4071EmitArguments(ptrInvocation.Arguments, method.Parameters, ptrInvocation.ArgumentRefKindsOpt); 4076var stackBehavior = GetCallStackBehavior(ptrInvocation.FunctionPointer.Signature, ptrInvocation.Arguments);
FlowAnalysis\AbstractFlowPass.cs (1)
3782VisitArguments(node.Arguments, node.ArgumentRefKindsOpt, node.FunctionPointer.Signature, default, false);
FlowAnalysis\NullableWalker.cs (1)
12925node.Arguments,
Generated\BoundNodes.xml.Generated.cs (5)
1452if (invokedExpression != this.InvokedExpression || arguments != this.Arguments || argumentRefKindsOpt != this.ArgumentRefKindsOpt || resultKind != this.ResultKind || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 9913this.VisitList(node.Arguments); 11035ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 12830ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 15412new TreeDumperNode("arguments", null, from x in node.Arguments select Visit(x, null)),
Lowering\Instrumentation\LocalStateTracingInstrumenter.cs (1)
568=> 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)
1096var arguments = this.VisitExpressionList(ref builder, node.Arguments, node.ArgumentRefKindsOpt);
Operations\CSharpOperationFactory_Methods.cs (1)
254boundFunctionPointerInvocation.Arguments,