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

@@ -12,10 +12,13 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.
* License along with this library.
*/
package com.jpexs.decompiler.flash;
import com.jpexs.decompiler.graph.Loop;
import java.util.HashSet;
import java.util.List;
/**
*
@@ -24,8 +27,10 @@ import java.util.HashSet;
public class FinalProcessLocalData {
public final HashSet<Integer> temporaryRegisters;
public final List<Loop> loops;
public FinalProcessLocalData(List<Loop> loops) {
temporaryRegisters = new HashSet<>();
this.loops = loops;
}
}