1 write to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5903
this.
ArgumentNamesOpt
= argumentNamesOpt;
9 references to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (9)
Generated\BoundNodes.xml.Generated.cs (5)
5918
if (argumentNamesOpt != this.
ArgumentNamesOpt
|| argumentRefKindsOpt != this.ArgumentRefKindsOpt || applicableMethods != this.ApplicableMethods || expression != this.Expression || arguments != this.Arguments || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11697
return node.Update(node.
ArgumentNamesOpt
, node.ArgumentRefKindsOpt, node.ApplicableMethods, expression, arguments, type);
13813
updatedNode = node.Update(node.
ArgumentNamesOpt
, node.ArgumentRefKindsOpt, applicableMethods, expression, arguments, infoAndType.Type!);
13818
updatedNode = node.Update(node.
ArgumentNamesOpt
, node.ArgumentRefKindsOpt, applicableMethods, expression, arguments, node.Type);
16309
new TreeDumperNode("argumentNamesOpt", node.
ArgumentNamesOpt
, null),
Lowering\LocalRewriter\LocalRewriter_Call.cs (2)
83
return _dynamicFactory.MakeDynamicInvocation(loweredExpression, loweredArguments, node.
ArgumentNamesOpt
, node.ArgumentRefKindsOpt, resultDiscarded).ToExpression();
92
node.
ArgumentNamesOpt
,
Operations\CSharpOperationFactory.cs (2)
780
ImmutableArray<string?> argumentNames = boundDynamicInvocation.
ArgumentNamesOpt
.NullToEmpty();
2318
(value, alignment, format) = getCallInfo(dynamicInvocation.Arguments, dynamicInvocation.
ArgumentNamesOpt
, currentPosition);