Partial implementation of metatables.

This commit is contained in:
James Roseborough
2007-06-16 15:31:27 +00:00
parent 7449605d56
commit 5d3c86e552
10 changed files with 108 additions and 14 deletions

View File

@@ -16,7 +16,7 @@ public class Closure extends LValue {
}
// perform a lua call
public void luaStackCall(StackState state, int base, int top) {
public void luaStackCall(StackState state, int base, int top, int nresults) {
state.setupCall( this, base, top );
}