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