1 write to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6286
this.
ArgumentNamesOpt
= argumentNamesOpt;
16 references to ArgumentNamesOpt
Microsoft.CodeAnalysis.CSharp (16)
Binder\Binder_Conversions.cs (2)
936
targetType = targetType.WithElementNames(sourceTuple.
ArgumentNamesOpt
!,
965
sourceTuple.
ArgumentNamesOpt
,
Binder\Binder_Expressions.cs (1)
339
sourceTuple.
ArgumentNamesOpt
,
Binder\Binder_TupleOperators.cs (2)
65
tuple.Syntax, tuple, wasTargetTyped: false, builder.ToImmutableAndFree(), tuple.
ArgumentNamesOpt
, tuple.InferredNamesOpt, tuple.Type, tuple.HasErrors);
379
return (tuple.Arguments, tuple.
ArgumentNamesOpt
);
Generated\BoundNodes.xml.Generated.cs (10)
6312
if (arguments != this.Arguments || argumentNamesOpt != this.
ArgumentNamesOpt
|| inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
6342
if (sourceTuple != this.SourceTuple || wasTargetTyped != this.WasTargetTyped || arguments != this.Arguments || argumentNamesOpt != this.
ArgumentNamesOpt
|| inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11380
return node.Update(arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, type);
11387
return node.Update(sourceTuple, node.WasTargetTyped, arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, type);
13563
updatedNode = node.Update(arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, infoAndType.Type);
13568
updatedNode = node.Update(arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, node.Type);
13581
updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, infoAndType.Type);
13586
updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.
ArgumentNamesOpt
, node.InferredNamesOpt, node.Type);
15902
new TreeDumperNode("argumentNamesOpt", node.
ArgumentNamesOpt
, null),
15914
new TreeDumperNode("argumentNamesOpt", node.
ArgumentNamesOpt
, null),
Symbols\Tuples\TupleTypeSymbol.cs (1)
286
var sourceNames = literal.
ArgumentNamesOpt
;