adapting AS3 decompilation to common method

This commit is contained in:
Jindra Pet��k
2013-02-26 22:44:46 +01:00
parent 7d10e8d13e
commit aa912facad
185 changed files with 1181 additions and 755 deletions
@@ -29,6 +29,12 @@ public class DoWhileItem extends LoopItem implements Block {
return false;
}
public List<List<GraphTargetItem>> getSubs() {
List<List<GraphTargetItem>> ret = new ArrayList<List<GraphTargetItem>>();
ret.add(commands);
return ret;
}
public DoWhileItem(GraphSourceItem src, Loop loop, List<GraphTargetItem> commands, GraphTargetItem expression) {
super(src, loop);
this.expression = expression;