Lines Matching defs:lua_Debug
417 typedef struct lua_Debug lua_Debug; /* activation record */ typedef
441 struct lua_Debug { struct
442 int event;
443 const char *name; /* (n) */
444 const char *namewhat; /* (n) 'global', 'local', 'field', 'method' */
445 const char *what; /* (S) 'Lua', 'C', 'main', 'tail' */
446 const char *source; /* (S) */
447 int currentline; /* (l) */
448 int linedefined; /* (S) */
449 int lastlinedefined; /* (S) */
450 unsigned char nups; /* (u) number of upvalues */
451 unsigned char nparams;/* (u) number of parameters */
452 char isvararg; /* (u) */
453 char istailcall; /* (t) */
454 char short_src[LUA_IDSIZE]; /* (S) */
456 struct CallInfo *i_ci; /* active function */