AS3: for..continue decompilation fix

This commit is contained in:
Jindra Pet��k
2013-02-09 16:50:32 +01:00
parent d8074bd20b
commit 9980126379
@@ -804,12 +804,13 @@ public class Graph {
}
}catch(ForException fex){
ret.addAll(fex.output);
fex.output=ret;
throw fex;
}
code.clearTemporaryRegisters(ret);
if(!part.forContinues.isEmpty()){
throw new ForException(null, ret,part);
throw new ForException(new ArrayList<TreeItem>(), ret,part);
}
return ret;
}