aboutsummaryrefslogtreecommitdiff
path: root/luadebug.h
diff options
context:
space:
mode:
Diffstat (limited to 'luadebug.h')
-rw-r--r--luadebug.h16
1 files changed, 4 insertions, 12 deletions
diff --git a/luadebug.h b/luadebug.h
index 6944cc17..67472ad9 100644
--- a/luadebug.h
+++ b/luadebug.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: luadebug.h,v 1.11 2000/08/08 20:42:07 roberto Exp roberto $ 2** $Id: luadebug.h,v 1.12 2000/08/11 16:17:28 roberto Exp roberto $
3** Debugging API 3** Debugging API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -19,8 +19,8 @@ typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
19 19
20int lua_getstack (lua_State *L, int level, lua_Debug *ar); 20int lua_getstack (lua_State *L, int level, lua_Debug *ar);
21int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar); 21int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar);
22int lua_getlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v); 22const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int localnum);
23int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v); 23const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int localnum);
24 24
25lua_Hook lua_setcallhook (lua_State *L, lua_Hook func); 25lua_Hook lua_setcallhook (lua_State *L, lua_Hook func);
26lua_Hook lua_setlinehook (lua_State *L, lua_Hook func); 26lua_Hook lua_setlinehook (lua_State *L, lua_Hook func);
@@ -36,16 +36,8 @@ struct lua_Debug {
36 const char *name; /* (n) */ 36 const char *name; /* (n) */
37 const char *namewhat; /* (n) `global', `tag method', `local', `field' */ 37 const char *namewhat; /* (n) `global', `tag method', `local', `field' */
38 int nups; /* (u) number of upvalues */ 38 int nups; /* (u) number of upvalues */
39 lua_Object func; /* (f) function being executed */
40 /* private part */ 39 /* private part */
41 lua_Object _func; /* active function */ 40 struct lua_TObject *_func; /* active function */
42};
43
44
45struct lua_Localvar {
46 int index;
47 const char *name;
48 lua_Object value;
49}; 41};
50 42
51 43