1 write to InferredNamesOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6554
this.
InferredNamesOpt
= inferredNamesOpt;
15 references to InferredNamesOpt
Microsoft.CodeAnalysis.CSharp (15)
Binder\Binder_Expressions.cs (1)
343
sourceTuple.
InferredNamesOpt
,
Binder\Binder_TupleOperators.cs (3)
65
tuple.Syntax, tuple, wasTargetTyped: false, builder.ToImmutableAndFree(), tuple.ArgumentNamesOpt, tuple.
InferredNamesOpt
, tuple.Type, tuple.HasErrors);
286
ImmutableArray<bool> leftInferred = leftIsTupleLiteral ? ((BoundTupleExpression)left).
InferredNamesOpt
: default;
289
ImmutableArray<bool> rightInferred = rightIsTupleLiteral ? ((BoundTupleExpression)right).
InferredNamesOpt
: default;
Generated\BoundNodes.xml.Generated.cs (10)
6579
if (arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || inferredNamesOpt != this.
InferredNamesOpt
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
6609
if (sourceTuple != this.SourceTuple || wasTargetTyped != this.WasTargetTyped || arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || inferredNamesOpt != this.
InferredNamesOpt
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11807
return node.Update(arguments, node.ArgumentNamesOpt, node.
InferredNamesOpt
, type);
11814
return node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.
InferredNamesOpt
, type);
14082
updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.
InferredNamesOpt
, infoAndType.Type);
14087
updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.
InferredNamesOpt
, node.Type);
14100
updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.
InferredNamesOpt
, infoAndType.Type);
14105
updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.
InferredNamesOpt
, node.Type);
16507
new TreeDumperNode("inferredNamesOpt", node.
InferredNamesOpt
, null),
16519
new TreeDumperNode("inferredNamesOpt", node.
InferredNamesOpt
, null),
Symbols\Tuples\TupleTypeSymbol.cs (1)
286
ImmutableArray<bool> inferredNames = literal.
InferredNamesOpt
;