mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-28 14:55:47 +00:00
AS3: Fixed do..while, while true, while &&
This commit is contained in:
@@ -24,9 +24,13 @@ public class Loop {
|
||||
|
||||
public GraphPart loopContinue;
|
||||
public GraphPart loopBreak;
|
||||
public long id;
|
||||
static long maxLoopId = 0;
|
||||
|
||||
public Loop(GraphPart loopContinue, GraphPart loopBreak) {
|
||||
this.loopContinue = loopContinue;
|
||||
this.loopBreak = loopBreak;
|
||||
id = maxLoopId;
|
||||
maxLoopId++;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user