1995-10-17 17:12:45 +03:00
|
|
|
/*
|
2000-08-09 00:42:07 +04:00
|
|
|
** $Id: luadebug.h,v 1.10 2000/03/30 17:19:48 roberto Exp roberto $
|
1998-06-19 20:14:09 +04:00
|
|
|
** Debugging API
|
1997-09-16 23:25:59 +04:00
|
|
|
** See Copyright Notice in lua.h
|
1995-10-17 17:12:45 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef luadebug_h
|
|
|
|
#define luadebug_h
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
1995-10-17 17:12:45 +03:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
typedef struct lua_Debug lua_Debug; /* activation record */
|
|
|
|
typedef struct lua_Localvar lua_Localvar;
|
1996-02-08 20:03:20 +03:00
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
|
1996-01-09 23:22:44 +03:00
|
|
|
|
1995-10-17 17:12:45 +03:00
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
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);
|
1996-02-07 21:10:27 +03:00
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
lua_Hook lua_setcallhook (lua_State *L, lua_Hook func);
|
|
|
|
lua_Hook lua_setlinehook (lua_State *L, lua_Hook func);
|
2000-01-19 15:00:45 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
struct lua_Debug {
|
2000-01-19 15:00:45 +03:00
|
|
|
const char *event; /* `call', `return' */
|
|
|
|
const char *source; /* (S) */
|
|
|
|
int linedefined; /* (S) */
|
|
|
|
const char *what; /* (S) `Lua' function, `C' function, Lua `main' */
|
|
|
|
int currentline; /* (l) */
|
|
|
|
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 */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-03-30 21:19:48 +04:00
|
|
|
struct lua_Localvar {
|
2000-01-19 15:00:45 +03:00
|
|
|
int index;
|
|
|
|
const char *name;
|
|
|
|
lua_Object value;
|
|
|
|
};
|
|
|
|
|
1999-01-15 16:11:22 +03:00
|
|
|
|
1995-10-17 17:12:45 +03:00
|
|
|
#endif
|