diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-08-28 14:57:04 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-08-28 14:57:04 -0300 |
| commit | 9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761 (patch) | |
| tree | da8d97d954e5ffabf9ff275df725f1e0a3a5b3e6 /luadebug.h | |
| parent | f1fd9b5c2c21f24d25d7813f431a3495702ebea6 (diff) | |
| download | lua-9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761.tar.gz lua-9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761.tar.bz2 lua-9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761.zip | |
first version for new API
Diffstat (limited to 'luadebug.h')
| -rw-r--r-- | luadebug.h | 16 |
1 files changed, 4 insertions, 12 deletions
| @@ -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 | ||
| 20 | int lua_getstack (lua_State *L, int level, lua_Debug *ar); | 20 | int lua_getstack (lua_State *L, int level, lua_Debug *ar); |
| 21 | int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar); | 21 | int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar); |
| 22 | int lua_getlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v); | 22 | const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int localnum); |
| 23 | int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v); | 23 | const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int localnum); |
| 24 | 24 | ||
| 25 | lua_Hook lua_setcallhook (lua_State *L, lua_Hook func); | 25 | lua_Hook lua_setcallhook (lua_State *L, lua_Hook func); |
| 26 | lua_Hook lua_setlinehook (lua_State *L, lua_Hook func); | 26 | lua_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 | |||
| 45 | struct lua_Localvar { | ||
| 46 | int index; | ||
| 47 | const char *name; | ||
| 48 | lua_Object value; | ||
| 49 | }; | 41 | }; |
| 50 | 42 | ||
| 51 | 43 | ||
