1 write to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6689
this.
ArgumentNamesOpt
= argumentNamesOpt;
16 references to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (16)
Binder\Binder_Conversions.cs (2)
3101
targetType = targetType.WithElementNames(sourceTuple.
ArgumentNamesOpt
,
3130
sourceTuple.
ArgumentNamesOpt
,
Binder\Binder_Expressions.cs (1)
379
sourceTuple.
ArgumentNamesOpt
,
Binder\Binder_TupleOperators.cs (2)
65
tuple.Syntax, tuple, wasTargetTyped: false, builder.ToImmutableAndFree(), tuple.
ArgumentNamesOpt
, tuple.InferredNamesOpt, tuple.Type, tuple.HasErrors);
386
return (tuple.Arguments, tuple.
ArgumentNamesOpt
);
Generated\BoundNodes.xml.Generated.cs (10)
6715
if (arguments != this.Arguments || argumentNamesOpt != this.
ArgumentNamesOpt
|| inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
6745
if (sourceTuple != this.SourceTuple || wasTargetTyped != this.WasTargetTyped || arguments != this.Arguments || argumentNamesOpt != this.
ArgumentNamesOpt
|| inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
12252
return node.Update(arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, type);
12259
return node.Update(sourceTuple, node.WasTargetTyped, arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, type);
14577
updatedNode = node.Update(arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, infoAndType.Type);
14582
updatedNode = node.Update(arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, node.Type);
14595
updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, infoAndType.Type);
14600
updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, node.Type);
17048
new TreeDumperNode("argumentNamesOpt", node.
ArgumentNamesOpt
, null),
17060
new TreeDumperNode("argumentNamesOpt", node.
ArgumentNamesOpt
, null),
Symbols\Tuples\TupleTypeSymbol.cs (1)
279
var sourceNames = literal.
ArgumentNamesOpt
;