Implemented interface member:
4 references to Equals
ILLink.RoslynAnalyzer (4)
DataFlow\InterproceduralState.cs (1)
40=> Methods.Equals(other.Methods) && HoistedLocals.Equals(other.HoistedLocals);
DataFlow\LocalStateLattice.cs (1)
65public bool Equals(LocalState<TValue> other) => Dictionary.Equals(other.Dictionary);
src\tools\illink\src\ILLink.Shared\DataFlow\DefaultValueDictionary.cs (2)
70public override bool Equals(object? obj) => obj is DefaultValueDictionary<TKey, TValue> other && Equals(other); 115public static bool operator ==(DefaultValueDictionary<TKey, TValue> left, DefaultValueDictionary<TKey, TValue> right) => left.Equals(right);