New AS3 Deobfuscation method similar to that for AS1/2

This commit is contained in:
Jindra Petřík
2015-06-20 20:27:39 +02:00
parent 176f8b6de7
commit 84398eaccf
22 changed files with 1890 additions and 1705 deletions

View File

@@ -16,15 +16,17 @@
*/
package com.jpexs.decompiler.graph;
import java.util.Stack;
/**
*
* @author JPEXS
*/
public class ScopeStack extends TranslateStack {
public ScopeStack(boolean allowEmpty) {
super(allowEmpty ? "scope" : null);
}
public ScopeStack() {
super("scope");
this(true);
}
}