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