From 668692d0a283dab122908cbf1b47e5279a337d33 Mon Sep 17 00:00:00 2001 From: James Roseborough Date: Fri, 30 Oct 2009 19:23:25 +0000 Subject: [PATCH] Add debug library by default. --- src/jse/org/luaj/vm2/lib/JsePlatform.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/jse/org/luaj/vm2/lib/JsePlatform.java b/src/jse/org/luaj/vm2/lib/JsePlatform.java index f0352b89..31ae4566 100644 --- a/src/jse/org/luaj/vm2/lib/JsePlatform.java +++ b/src/jse/org/luaj/vm2/lib/JsePlatform.java @@ -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; }