Lines Matching defs:lua_Debug
375 typedef struct lua_Debug lua_Debug; /* activation record */ typedef
399 struct lua_Debug { struct
400 int event;
401 const char *name; /* (n) */
402 const char *namewhat; /* (n) 'global', 'local', 'field', 'method' */
403 const char *what; /* (S) 'Lua', 'C', 'main', 'tail' */
404 const char *source; /* (S) */
405 int currentline; /* (l) */
406 int linedefined; /* (S) */
407 int lastlinedefined; /* (S) */
408 unsigned char nups; /* (u) number of upvalues */
409 unsigned char nparams;/* (u) number of parameters */
410 char isvararg; /* (u) */
411 char istailcall; /* (t) */
412 char short_src[LUA_IDSIZE]; /* (S) */
414 struct CallInfo *i_ci; /* active function */