mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-18 21:48:52 +00:00
better AS1/2 parser - constantpool
This commit is contained in:
@@ -315,7 +315,7 @@ public class ActionGraph extends Graph {
|
||||
|
||||
@Override
|
||||
protected int checkIp(int ip) {
|
||||
int oldIp=ip;
|
||||
int oldIp = ip;
|
||||
//return in for..in
|
||||
GraphSourceItem action = code.get(ip);
|
||||
if ((action instanceof ActionPush) && (((ActionPush) action).values.size() == 1) && (((ActionPush) action).values.get(0) instanceof Null)) {
|
||||
@@ -332,7 +332,7 @@ public class ActionGraph extends Graph {
|
||||
}
|
||||
}
|
||||
}
|
||||
if(oldIp!=ip){
|
||||
if (oldIp != ip) {
|
||||
return checkIp(ip);
|
||||
}
|
||||
return ip;
|
||||
|
||||
Reference in New Issue
Block a user