1 write to Values
Microsoft.CodeAnalysis.CSharp (1)
Binder\DecisionDagBuilder.cs (1)
4048Values = values;
9 references to Values
Microsoft.CodeAnalysis.CSharp (9)
Binder\DecisionDagBuilder.cs (9)
4133var intersection = (IConstantValueSet)possibleValues.Intersect(Values); 4142if (intersection.Equals(Values)) 4150ConstantValue? sample = Values.Sample; 4163new ValueSet(replacement, Values, Syntax), tempMap, 4178public override string Dump(Func<BoundDagTest, string> dump) => $"VALUES({Values})"; 4179public override bool Equals(object? obj) => this == obj || (obj is ValueSet other && Input.Equals(other.Input) && Values.Equals(other.Values)); 4180public override int GetHashCode() => Hash.Combine(Input.GetHashCode(), Values.GetHashCode()); 5030ValueSet vs => vs.Values,