Add debug library by default.

This commit is contained in:
James Roseborough
2009-10-30 19:23:25 +00:00
parent 933a4fcc36
commit 668692d0a2

View File

@@ -46,6 +46,7 @@ public class JsePlatform {
_G.set( "string", new org.luaj.vm2.lib.StringLib() );
_G.set( "luajava", new org.luaj.vm2.lib.jse.LuajavaLib() );
CoroutineLib.install(_G);
DebugLib.install(_G);
return _G;
}