AS3: Merged continues in try..catch

This commit is contained in:
Jindra Petřík
2021-02-07 13:19:37 +01:00
parent 45436d7232
commit 8637d16022
5 changed files with 6 additions and 9 deletions

View File

@@ -1173,7 +1173,9 @@ public class AVM2Graph extends Graph {
}
currentRet.add(tryItem);
/*processIfs(tryItem.tryCommands);
//----- Merge continues from catches/try BEGIN
processIfs(tryItem.tryCommands);
processIfs(tryItem.finallyCommands);
for (List<GraphTargetItem> cc : tryItem.catchCommands) {
processIfs(cc);
@@ -1236,7 +1238,8 @@ public class AVM2Graph extends Graph {
}
currentRet.add(maxCountCnt);
}
}*/
}
//----- Merge continues from catches/try END
if (afterPart != null) {