Adding test suite with tests from the set of standard Lua test cases. These

test cases were downloaded from:
  http://www.inf.puc-rio.br/~roberto/lua/lua5.1-tests.tar.gz
This commit is contained in:
Ian Farmer
2007-07-17 03:20:53 +00:00
parent 635f127cd0
commit 8c3fe262f9
3 changed files with 115 additions and 1 deletions

View File

@@ -24,7 +24,7 @@ public class CallFrame {
public final Proto p;
private final LValue[] k;
private final int nresults;
private int pc = 0;
int pc = 0;
boolean done = false;
CallFrame(StackState state, Closure c, int base, int nargs, int nresults) {