Lines Matching defs:lua_Debug
450 typedef struct lua_Debug lua_Debug; /* activation record */ typedef
474 struct lua_Debug { struct
475 int event;
476 const char *name; /* (n) */
477 const char *namewhat; /* (n) 'global', 'local', 'field', 'method' */
478 const char *what; /* (S) 'Lua', 'C', 'main', 'tail' */
479 const char *source; /* (S) */
480 int currentline; /* (l) */
481 int linedefined; /* (S) */
482 int lastlinedefined; /* (S) */
483 unsigned char nups; /* (u) number of upvalues */
484 unsigned char nparams;/* (u) number of parameters */
485 char isvararg; /* (u) */
486 char istailcall; /* (t) */
487 char short_src[LUA_IDSIZE]; /* (S) */
489 struct CallInfo *i_ci; /* active function */