mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 11:10:56 +00:00
AS3: for..continue decompilation fix
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user