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