Implemented interface member:
6 references to Equals
ILLink.RoslynAnalyzer (6)
DataFlow\InterproceduralState.cs (1)
40 => Methods.Equals (other.Methods) && HoistedLocals.Equals (other.HoistedLocals);
src\tools\illink\src\ILLink.Shared\DataFlow\ValueSet.cs (2)
165 public override bool Equals (object? obj) => obj is ValueSet<TValue> other && Equals (other); 198 public static bool operator == (ValueSet<TValue> left, ValueSet<TValue> right) => left.Equals (right);
TrimAnalysis\ArrayValue.cs (1)
61 if (!otherArr.IndexValues.TryGetValue (kvp.Key, out MultiValue value) || !kvp.Value.Equals (value))
TrimAnalysis\TrimAnalysisVisitor.cs (2)
234 if (target.Equals (TopValue)) 260 return result.Equals (TopValue) ? UnknownValue.Instance : result;