mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-28 16:45:37 +00:00
AS3 parser - namespaces, :: operator, etc.
This commit is contained in:
@@ -35,15 +35,16 @@ public class SourceGeneratorLocalData implements Serializable {
|
||||
//public List<String> openedNamespaces = new ArrayList<>();
|
||||
//public List<Integer> openedNamespacesKinds = new ArrayList<>();
|
||||
public List<ABCException> exceptions = new ArrayList<>();
|
||||
/*
|
||||
public void addNamespace(int kind, String ns) {
|
||||
addNamespace(kind, ns, openedNamespaces.size() - 1);
|
||||
}
|
||||
public String currentClass;
|
||||
/*
|
||||
public void addNamespace(int kind, String ns) {
|
||||
addNamespace(kind, ns, openedNamespaces.size() - 1);
|
||||
}
|
||||
|
||||
public void addNamespace(int kind, String ns, int index) {
|
||||
openedNamespaces.add(index, ns);
|
||||
openedNamespacesKinds.add(index, kind);
|
||||
}*/
|
||||
public void addNamespace(int kind, String ns, int index) {
|
||||
openedNamespaces.add(index, ns);
|
||||
openedNamespacesKinds.add(index, kind);
|
||||
}*/
|
||||
|
||||
public SourceGeneratorLocalData(HashMap<String, Integer> registerVars, Integer inFunction, Boolean inMethod, Integer forInLevel) {
|
||||
this.registerVars = registerVars;
|
||||
|
||||
Reference in New Issue
Block a user