Lines Matching defs:lua_Debug
141 typedef struct lua_Debug lua_Debug; typedef
498 struct lua_Debug { struct
499 int event;
500 const char *name; /* (n) */
501 const char *namewhat; /* (n) 'global', 'local', 'field', 'method' */
502 const char *what; /* (S) 'Lua', 'C', 'main', 'tail' */
503 const char *source; /* (S) */
504 size_t srclen; /* (S) */
505 int currentline; /* (l) */
506 int linedefined; /* (S) */
507 int lastlinedefined; /* (S) */
508 unsigned char nups; /* (u) number of upvalues */
509 unsigned char nparams;/* (u) number of parameters */
510 char isvararg; /* (u) */
511 char istailcall; /* (t) */
512 unsigned short ftransfer; /* (r) index of first value transferred */
513 unsigned short ntransfer; /* (r) number of transferred values */
514 char short_src[LUA_IDSIZE]; /* (S) */
516 struct CallInfo *i_ci; /* active function */