AS1/2: break on the end of for..in loop

This commit is contained in:
Jindra Petřík
2018-01-30 07:39:16 +01:00
parent eca98106d2
commit a7f457ad9d
8 changed files with 59 additions and 21 deletions

View File

@@ -676,7 +676,7 @@ public class Graph {
List<GraphTargetItem> ret = printGraph(new HashMap<>(), new HashMap<>(), localData, stack, allParts, null, heads.get(0), null, loops, staticOperation, path);
processIfs(ret);
finalProcessStack(stack, ret, path);
finalProcessAll(ret, 0, new FinalProcessLocalData(), path);
finalProcessAll(ret, 0, new FinalProcessLocalData(loops), path);
return ret;
}