mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-19 23:55:40 +00:00
not resolving unusualTags in DefineSprite for parallel speedup off too
improved AS3 deobfsucation
This commit is contained in:
@@ -390,6 +390,10 @@ public abstract class GraphTargetItem implements Serializable, Cloneable {
|
||||
return EcmaScript.toString(getResult());
|
||||
}
|
||||
|
||||
public Boolean getResultAsBoolean() {
|
||||
return EcmaScript.toBoolean(getResult());
|
||||
}
|
||||
|
||||
public String toStringNoQuotes(LocalData localData) {
|
||||
// todo: honfika: this method should not be called, maybe we should throw an exception
|
||||
return toString();
|
||||
|
||||
@@ -40,7 +40,7 @@ public class NotItem extends UnaryOpItem implements LogicalOpItem, Inverted {
|
||||
|
||||
@Override
|
||||
public Object getResult() {
|
||||
return getResult(value.getResult());
|
||||
return !value.getResultAsBoolean();
|
||||
}
|
||||
|
||||
public static Boolean getResult(Object obj) {
|
||||
|
||||
Reference in New Issue
Block a user