mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-24 08:44:49 +00:00
New AS3 Deobfuscation method similar to that for AS1/2
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user