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)
169public override bool Equals(object? obj) => obj is ValueSet<TValue> other && Equals(other); 217public static bool operator ==(ValueSet<TValue> left, ValueSet<TValue> right) => left.Equals(right);
TrimAnalysis\ArrayValue.cs (1)
62if (!otherArr.IndexValues.TryGetValue(kvp.Key, out MultiValue value) || !kvp.Value.Equals(value))
TrimAnalysis\TrimAnalysisVisitor.cs (2)
259if (target.Equals(TopValue)) 287return result.Equals(TopValue) ? UnknownValue.Instance : result;