1 write to ArgumentRefKindsOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
5903
this.
ArgumentRefKindsOpt
= argumentRefKindsOpt;
11 references to ArgumentRefKindsOpt
Microsoft.CodeAnalysis.CSharp (11)
FlowAnalysis\AbstractFlowPass.cs (1)
1166
VisitArguments(node.Arguments, node.
ArgumentRefKindsOpt
, null);
FlowAnalysis\NullableWalker.cs (1)
11674
VisitArgumentsEvaluate(node.Arguments, node.
ArgumentRefKindsOpt
, parameterAnnotationsOpt: default, defaultArguments: default);
Generated\BoundNodes.xml.Generated.cs (5)
5917
if (argumentNamesOpt != this.ArgumentNamesOpt || argumentRefKindsOpt != this.
ArgumentRefKindsOpt
|| applicableMethods != this.ApplicableMethods || expression != this.Expression || arguments != this.Arguments || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11696
return node.Update(node.ArgumentNamesOpt, node.
ArgumentRefKindsOpt
, node.ApplicableMethods, expression, arguments, type);
13812
updatedNode = node.Update(node.ArgumentNamesOpt, node.
ArgumentRefKindsOpt
, applicableMethods, expression, arguments, infoAndType.Type!);
13817
updatedNode = node.Update(node.ArgumentNamesOpt, node.
ArgumentRefKindsOpt
, applicableMethods, expression, arguments, node.Type);
16309
new TreeDumperNode("argumentRefKindsOpt", node.
ArgumentRefKindsOpt
, null),
Lowering\LocalRewriter\LocalRewriter.DecisionDagRewriter.cs (1)
271
if (!node.
ArgumentRefKindsOpt
.IsDefault)
Lowering\LocalRewriter\LocalRewriter_Call.cs (2)
83
return _dynamicFactory.MakeDynamicInvocation(loweredExpression, loweredArguments, node.ArgumentNamesOpt, node.
ArgumentRefKindsOpt
, resultDiscarded).ToExpression();
93
node.
ArgumentRefKindsOpt
,
Operations\CSharpOperationFactory.cs (1)
781
ImmutableArray<RefKind> argumentRefKinds = boundDynamicInvocation.
ArgumentRefKindsOpt
.NullToEmpty();