AS3 test methods separated to classes, Fixed AS3: get/set slot for global scope

This commit is contained in:
Jindra Petřík
2021-01-18 19:14:51 +01:00
parent cdc3eec1f2
commit cade4549fb
94 changed files with 1999 additions and 138 deletions

View File

@@ -12,9 +12,12 @@
* 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;
import com.jpexs.decompiler.flash.abc.avm2.model.ScriptAVM2Item;
/**
*
* @author JPEXS
@@ -28,4 +31,9 @@ public class ScopeStack extends TranslateStack {
public ScopeStack() {
this(true);
}
public ScopeStack(int scriptIndex) {
this(true);
//push(new ScriptAVM2Item(scriptIndex));
}
}