Lines Matching defs:lua_Debug
444 typedef struct lua_Debug lua_Debug; /* activation record */ typedef
469 struct lua_Debug { struct
470 int event;
471 const char *name; /* (n) */
472 const char *namewhat; /* (n) 'global', 'local', 'field', 'method' */
473 const char *what; /* (S) 'Lua', 'C', 'main', 'tail' */
474 const char *source; /* (S) */
475 size_t srclen; /* (S) */
476 int currentline; /* (l) */
477 int linedefined; /* (S) */
478 int lastlinedefined; /* (S) */
479 unsigned char nups; /* (u) number of upvalues */
480 unsigned char nparams;/* (u) number of parameters */
481 char isvararg; /* (u) */
482 char istailcall; /* (t) */
483 unsigned short ftransfer; /* (r) index of first value transferred */
484 unsigned short ntransfer; /* (r) number of transferred values */
485 char short_src[LUA_IDSIZE]; /* (S) */
487 struct CallInfo *i_ci; /* active function */