Implemented interface member:
5 references to Equals
illink (5)
Linker.Dataflow\InterproceduralState.cs (1)
30
=> MethodBodies.
Equals
(other.MethodBodies) && HoistedLocals.Equals(other.HoistedLocals);
Linker.Dataflow\ValueNode.cs (2)
45
if (!otherList[i].
Equals
(this[i]))
63
public bool Equals(ValueBasicBlockPair other) => Value.
Equals
(other.Value) && BasicBlockIndex.Equals(other.BasicBlockIndex);
src\runtime\src\tools\illink\src\ILLink.Shared\DataFlow\ValueSet.cs (2)
169
public override bool Equals(object? obj) => obj is ValueSet<TValue> other &&
Equals
(other);
217
public static bool operator ==(ValueSet<TValue> left, ValueSet<TValue> right) => left.
Equals
(right);