1 write to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6580this.ArgumentNamesOpt = argumentNamesOpt;
16 references to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (16)
Binder\Binder_Conversions.cs (2)
2473targetType = targetType.WithElementNames(sourceTuple.ArgumentNamesOpt!, 2502sourceTuple.ArgumentNamesOpt,
Binder\Binder_Expressions.cs (1)
373sourceTuple.ArgumentNamesOpt,
Binder\Binder_TupleOperators.cs (2)
65tuple.Syntax, tuple, wasTargetTyped: false, builder.ToImmutableAndFree(), tuple.ArgumentNamesOpt, tuple.InferredNamesOpt, tuple.Type, tuple.HasErrors); 386return (tuple.Arguments, tuple.ArgumentNamesOpt);
Generated\BoundNodes.xml.Generated.cs (10)
6606if (arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 6636if (sourceTuple != this.SourceTuple || wasTargetTyped != this.WasTargetTyped || arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 11994return node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, type); 12001return node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, type); 14291updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, infoAndType.Type); 14296updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, node.Type); 14309updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, infoAndType.Type); 14314updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, node.Type); 16708new TreeDumperNode("argumentNamesOpt", node.ArgumentNamesOpt, null), 16720new TreeDumperNode("argumentNamesOpt", node.ArgumentNamesOpt, null),
Symbols\Tuples\TupleTypeSymbol.cs (1)
279var sourceNames = literal.ArgumentNamesOpt;