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)) 11805return node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, type); 11812return node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, type); 14080updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, infoAndType.Type); 14085updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, node.Type); 14098updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, infoAndType.Type); 14103updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, node.Type); 16504new TreeDumperNode("argumentNamesOpt", node.ArgumentNamesOpt, null), 16516new TreeDumperNode("argumentNamesOpt", node.ArgumentNamesOpt, null),
Symbols\Tuples\TupleTypeSymbol.cs (1)
280var sourceNames = literal.ArgumentNamesOpt;