Implemented interface member:
3 references to Equals
ILCompiler.Compiler (3)
Compiler\Dataflow\ArrayValue.cs (1)
81
if (!otherArr.IndexValues.TryGetValue(kvp.Key, out ValueBasicBlockPair value) || !kvp.Value.
Equals
(value))
Compiler\Dataflow\ValueNode.cs (2)
67
public override bool Equals(object? obj) => obj is ValueBasicBlockPair other &&
Equals
(other);
71
public static bool operator ==(ValueBasicBlockPair left, ValueBasicBlockPair right) => left.
Equals
(right);