mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 01:50:50 +00:00
Issue #304 Direct AS1/2 editing DefineFunction vs DefineFunction2 fix
merge
This commit is contained in:
@@ -26,11 +26,12 @@ import java.util.HashMap;
|
||||
public class SourceGeneratorLocalData implements Serializable {
|
||||
|
||||
public HashMap<String, Integer> registerVars;
|
||||
public Boolean inFunction;
|
||||
public Integer inFunction;
|
||||
public Boolean inMethod;
|
||||
public Integer forInLevel;
|
||||
|
||||
|
||||
public SourceGeneratorLocalData(HashMap<String, Integer> registerVars, Boolean inFunction, Boolean inMethod, Integer forInLevel) {
|
||||
public SourceGeneratorLocalData(HashMap<String, Integer> registerVars, Integer inFunction, Boolean inMethod, Integer forInLevel) {
|
||||
this.registerVars = registerVars;
|
||||
this.inFunction = inFunction;
|
||||
this.inMethod = inMethod;
|
||||
|
||||
Reference in New Issue
Block a user