1 write to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6553
this.
ArgumentNamesOpt
= argumentNamesOpt;
14 references to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (14)
Binder\Binder_Expressions.cs (1)
342
sourceTuple.
ArgumentNamesOpt
,
Binder\Binder_TupleOperators.cs (2)
65
tuple.Syntax, tuple, wasTargetTyped: false, builder.ToImmutableAndFree(), tuple.
ArgumentNamesOpt
, tuple.InferredNamesOpt, tuple.Type, tuple.HasErrors);
379
return (tuple.Arguments, tuple.
ArgumentNamesOpt
);
Generated\BoundNodes.xml.Generated.cs (10)
6579
if (arguments != this.Arguments || argumentNamesOpt != this.
ArgumentNamesOpt
|| inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
6609
if (sourceTuple != this.SourceTuple || wasTargetTyped != this.WasTargetTyped || arguments != this.Arguments || argumentNamesOpt != this.
ArgumentNamesOpt
|| inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11807
return node.Update(arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, type);
11814
return node.Update(sourceTuple, node.WasTargetTyped, arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, type);
14082
updatedNode = node.Update(arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, infoAndType.Type);
14087
updatedNode = node.Update(arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, node.Type);
14100
updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, infoAndType.Type);
14105
updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, node.Type);
16506
new TreeDumperNode("argumentNamesOpt", node.
ArgumentNamesOpt
, null),
16518
new TreeDumperNode("argumentNamesOpt", node.
ArgumentNamesOpt
, null),
Symbols\Tuples\TupleTypeSymbol.cs (1)
280
var sourceNames = literal.
ArgumentNamesOpt
;