mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-18 00:31:59 +00:00
AS1/2 better deobfuscation
This commit is contained in:
@@ -933,8 +933,12 @@ public class Graph {
|
||||
}
|
||||
GraphPart loopBodyStart = null;
|
||||
GraphPart next = part.getNextPartPath(loopContinues);
|
||||
if ((reversed == loop) && (expr instanceof LogicalOpItem)) {
|
||||
expr = ((LogicalOpItem) expr).invert();
|
||||
if (reversed == loop) {
|
||||
if (expr instanceof LogicalOpItem) {
|
||||
expr = ((LogicalOpItem) expr).invert();
|
||||
} else {
|
||||
expr = new NotItem(null, expr);
|
||||
}
|
||||
}
|
||||
List<GraphTargetItem> retx = ret;
|
||||
if ((!loop) || (doWhile && (part.nextParts.size() > 1))) {
|
||||
|
||||
Reference in New Issue
Block a user