Fixed using temporary registers after for..in (causing §§pop instructions, etc.)

This commit is contained in:
Jindra Petřík
2018-05-27 10:49:42 +02:00
parent 8b91bfc1d7
commit 6ec124f71a
12 changed files with 182 additions and 6 deletions
@@ -0,0 +1,11 @@
package com.jpexs.decompiler.graph.model;
/**
* An item which is passed on top of the stack when processing if branches or
* loop body. This is actually a hack to process AS1/2 for..in clauses
*
* @author JPEXS
*/
public interface BranchStackResistant {
}
@@ -12,7 +12,8 @@
* 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.graph.model;
import com.jpexs.decompiler.flash.SourceGeneratorLocalData;