Remove many unused and unimplemented functions.

This commit is contained in:
James Roseborough
2008-07-24 18:32:02 +00:00
parent 00b14efa99
commit 447bc5853a
5 changed files with 23 additions and 726 deletions

View File

@@ -25,7 +25,7 @@ public class LuaStateTest extends TestCase {
public void testFuncCall() throws IOException {
vm.pushstring("bogus");
vm.pushjavafunction(new SomeFunc( "arg" ));
vm.pushfunction(new SomeFunc( "arg" ));
vm.pushstring("arg");
vm.call(1, 1);
assertEquals( 2, vm.gettop() );
@@ -36,7 +36,7 @@ public class LuaStateTest extends TestCase {
public void testFuncCall2() throws IOException {
vm.pushstring("bogus");
vm.pushjavafunction(new SomeFunc( "nil" ));
vm.pushfunction(new SomeFunc( "nil" ));
vm.call(0, 1);
assertEquals( 2, vm.gettop() );
assertEquals( "bogus", vm.tostring(1) );