Commit 1fc92d2a authored by Skylot's avatar Skylot

fix: instruction deep equals must check result

parent 850bd969
...@@ -285,6 +285,7 @@ public class InsnNode extends LineAttrNode { ...@@ -285,6 +285,7 @@ public class InsnNode extends LineAttrNode {
return true; return true;
} }
return isSame(other) return isSame(other)
&& Objects.equals(result, other.result)
&& Objects.equals(arguments, other.arguments); && Objects.equals(arguments, other.arguments);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment