mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-18 19:22:37 +00:00
Issue #37 reversed loop conditions in AS3
This commit is contained in:
@@ -905,7 +905,7 @@ public class Graph {
|
||||
}
|
||||
GraphPart loopBodyStart = null;
|
||||
GraphPart next = part.getNextPartPath(loopContinues);
|
||||
if (((!reversed) || loop) && (expr instanceof LogicalOpItem)) {
|
||||
if ((reversed == loop) && (expr instanceof LogicalOpItem)) {
|
||||
expr = ((LogicalOpItem) expr).invert();
|
||||
}
|
||||
List<GraphTargetItem> retx = ret;
|
||||
|
||||
Reference in New Issue
Block a user