AS3: Fixed do..while, while true, while &&

This commit is contained in:
Jindra Petk
2013-02-23 19:16:30 +01:00
parent 655206adc3
commit 6d644179ca
18 changed files with 290 additions and 169 deletions

View File

@@ -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++;
}
}