aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib_jit.c2
1 files changed, 2 insertions, 0 deletions
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)
193 setintfield(L, t, "currentline", lj_debug_line(pt, pc)); 193 setintfield(L, t, "currentline", lj_debug_line(pt, pc));
194 lua_pushboolean(L, (pt->flags & PROTO_VARARG)); 194 lua_pushboolean(L, (pt->flags & PROTO_VARARG));
195 lua_setfield(L, -2, "isvararg"); 195 lua_setfield(L, -2, "isvararg");
196 lua_pushboolean(L, (pt->flags & PROTO_CHILD));
197 lua_setfield(L, -2, "children");
196 setstrV(L, L->top++, proto_chunkname(pt)); 198 setstrV(L, L->top++, proto_chunkname(pt));
197 lua_setfield(L, -2, "source"); 199 lua_setfield(L, -2, "source");
198 lj_debug_pushloc(L, pt, pc); 200 lj_debug_pushloc(L, pt, pc);