1 write to InferredNamesOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6555this.InferredNamesOpt = inferredNamesOpt;
15 references to InferredNamesOpt
Microsoft.CodeAnalysis.CSharp (15)
Binder\Binder_Expressions.cs (1)
343sourceTuple.InferredNamesOpt,
Binder\Binder_TupleOperators.cs (3)
65tuple.Syntax, tuple, wasTargetTyped: false, builder.ToImmutableAndFree(), tuple.ArgumentNamesOpt, tuple.InferredNamesOpt, tuple.Type, tuple.HasErrors); 286ImmutableArray<bool> leftInferred = leftIsTupleLiteral ? ((BoundTupleExpression)left).InferredNamesOpt : default; 289ImmutableArray<bool> rightInferred = rightIsTupleLiteral ? ((BoundTupleExpression)right).InferredNamesOpt : default;
Generated\BoundNodes.xml.Generated.cs (10)
6580if (arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 6610if (sourceTuple != this.SourceTuple || wasTargetTyped != this.WasTargetTyped || arguments != this.Arguments || argumentNamesOpt != this.ArgumentNamesOpt || inferredNamesOpt != this.InferredNamesOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 11844return node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, type); 11851return node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, type); 14119updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, infoAndType.Type); 14124updatedNode = node.Update(arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, node.Type); 14137updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, infoAndType.Type); 14142updatedNode = node.Update(sourceTuple, node.WasTargetTyped, arguments, node.ArgumentNamesOpt, node.InferredNamesOpt, node.Type); 16544new TreeDumperNode("inferredNamesOpt", node.InferredNamesOpt, null), 16556new TreeDumperNode("inferredNamesOpt", node.InferredNamesOpt, null),
Symbols\Tuples\TupleTypeSymbol.cs (1)
286ImmutableArray<bool> inferredNames = literal.InferredNamesOpt;