From 9da94d135535c607d71a5d7e902b561ee418f0ca Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Sun, 12 Jun 2011 23:51:13 +0200 Subject: Add recursive dump option to jit.bc.dump(). --- src/lib_jit.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/lib_jit.c b/src/lib_jit.c index 31b27ccb..66b3856a 100644 --- a/src/lib_jit.c +++ b/src/lib_jit.c @@ -193,6 +193,8 @@ LJLIB_CF(jit_util_funcinfo) setintfield(L, t, "currentline", lj_debug_line(pt, pc)); lua_pushboolean(L, (pt->flags & PROTO_VARARG)); lua_setfield(L, -2, "isvararg"); + lua_pushboolean(L, (pt->flags & PROTO_CHILD)); + lua_setfield(L, -2, "children"); setstrV(L, L->top++, proto_chunkname(pt)); lua_setfield(L, -2, "source"); lj_debug_pushloc(L, pt, pc); -- cgit v1.2.3-55-g6feb