Add pattern matcher implementation ported from C version of Lua. Still

work to do:
(1) Replace use of recursion with while/continue
(2) Remove as many array bounds checks as possible
This commit is contained in:
Ian Farmer
2007-09-18 04:18:39 +00:00
parent 108fabc58f
commit 534e69fcfb
3 changed files with 382 additions and 6 deletions

View File

@@ -76,6 +76,10 @@ public class LuaJTest extends TestCase {
runTest( "setlist" );
}
public void testStrLib() throws IOException, InterruptedException {
runTest( "strlib" );
}
public void testType() throws IOException, InterruptedException {
runTest( "type" );
}