1 write to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6654this.ArgumentNamesOpt = argumentNamesOpt;
16 references to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (16)
Binder\Binder_Conversions.cs (2)
2962targetType = targetType.WithElementNames(sourceTuple.ArgumentNamesOpt, 2991sourceTuple.ArgumentNamesOpt,
Binder\Binder_Expressions.cs (1)
379sourceTuple.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)
6680if (arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 6710if (sourceTuple != this.SourceTuple || wasTargetTyped != this.WasTargetTyped || arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 12094return node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, type); 12101return node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, type); 14403updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, infoAndType.Type); 14408updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, node.Type); 14421updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, infoAndType.Type); 14426updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, node.Type); 16837new TreeDumperNode("argumentNamesOpt", node.ArgumentNamesOpt, null), 16849new TreeDumperNode("argumentNamesOpt", node.ArgumentNamesOpt, null),
Symbols\Tuples\TupleTypeSymbol.cs (1)
279var sourceNames = literal.ArgumentNamesOpt;