fix: instruction deep equals must check result

This commit is contained in:
Skylot
2018-11-16 19:04:38 +03:00
parent 850bd96976
commit 1fc92d2a16
@@ -285,6 +285,7 @@ public class InsnNode extends LineAttrNode {
return true;
}
return isSame(other)
&& Objects.equals(result, other.result)
&& Objects.equals(arguments, other.arguments);
}