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