execute actions without translating them...., using this new execute method in deobfuscator

This commit is contained in:
2015-10-25 10:08:28 +01:00
parent 1cc9095acd
commit 75b407d119
92 changed files with 1662 additions and 327 deletions
@@ -39,7 +39,11 @@ public class NotItem extends UnaryOpItem implements LogicalOpItem, Inverted {
@Override
public Object getResult() {
boolean ret = EcmaScript.toBoolean(value.getResult());
return getResult(value.getResult());
}
public static Boolean getResult(Object obj) {
boolean ret = EcmaScript.toBoolean(obj);
if (ret) {
return Boolean.FALSE;
} else {