[NOTHING CHANGED] Assorted fixes #48

Closed
asiekierka wants to merge 61 commits from asiekierka/master into master
Showing only changes of commit b1322640ca - Show all commits

View File

@@ -712,11 +712,13 @@ public class DebugLib extends TwoArgFunction {
}
public static class CallFrame {
static final LuaValue[] EMPTY = {};
LuaFunction f;
int pc;
int top;
Varargs v;
LuaValue[] stack;
LuaValue[] stack = EMPTY;
CallFrame previous;
void set(LuaClosure function, Varargs varargs, LuaValue[] stack) {
@@ -736,7 +738,7 @@ public class DebugLib extends TwoArgFunction {
void reset() {
this.f = null;
this.v = null;
this.stack = null;
this.stack = EMPTY;
}
void instr(int pc, Varargs v, int top) {