summaryrefslogtreecommitdiff
path: root/luadebug.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-28 14:57:04 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-28 14:57:04 -0300
commit9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761 (patch)
treeda8d97d954e5ffabf9ff275df725f1e0a3a5b3e6 /luadebug.h
parentf1fd9b5c2c21f24d25d7813f431a3495702ebea6 (diff)
downloadlua-github-9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761.tar.gz
first version for new API
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 @@
/*
-** $Id: luadebug.h,v 1.11 2000/08/08 20:42:07 roberto Exp roberto $
+** $Id: luadebug.h,v 1.12 2000/08/11 16:17:28 roberto Exp roberto $
** Debugging API
** See Copyright Notice in lua.h
*/
@@ -19,8 +19,8 @@ typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
int lua_getstack (lua_State *L, int level, lua_Debug *ar);
int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar);
-int lua_getlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v);
-int lua_setlocal (lua_State *L, const lua_Debug *ar, lua_Localvar *v);
+const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int localnum);
+const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int localnum);
lua_Hook lua_setcallhook (lua_State *L, lua_Hook func);
lua_Hook lua_setlinehook (lua_State *L, lua_Hook func);
@@ -36,16 +36,8 @@ struct lua_Debug {
const char *name; /* (n) */
const char *namewhat; /* (n) `global', `tag method', `local', `field' */
int nups; /* (u) number of upvalues */
- lua_Object func; /* (f) function being executed */
/* private part */
- lua_Object _func; /* active function */
-};
-
-
-struct lua_Localvar {
- int index;
- const char *name;
- lua_Object value;
+ struct lua_TObject *_func; /* active function */
};