1 write to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6537this.ArgumentNamesOpt = argumentNamesOpt;
16 references to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (16)
Binder\Binder_Conversions.cs (2)
2485targetType = targetType.WithElementNames(sourceTuple.ArgumentNamesOpt!, 2514sourceTuple.ArgumentNamesOpt,
Binder\Binder_Expressions.cs (1)
347sourceTuple.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)
6563if (arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 6593if (sourceTuple != this.SourceTuple || wasTargetTyped != this.WasTargetTyped || arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 11943return node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, type); 11950return node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, type); 14249updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, infoAndType.Type); 14254updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, node.Type); 14267updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, infoAndType.Type); 14272updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, node.Type); 16674new TreeDumperNode("argumentNamesOpt", node.ArgumentNamesOpt, null), 16686new TreeDumperNode("argumentNamesOpt", node.ArgumentNamesOpt, null),
Symbols\Tuples\TupleTypeSymbol.cs (1)
279var sourceNames = literal.ArgumentNamesOpt;