Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include "lstate.h"
Go to the source code of this file.
Macros | |
#define | pcRel(pc, p) (cast(int, (pc) - (p)->code) - 1) |
#define | getfuncline(f, pc) (((f)->lineinfo) ? (f)->lineinfo[pc] : -1) |
#define | resethookcount(L) (L->hookcount = L->basehookcount) |
Functions | |
LUAI_FUNC l_noret | luaG_typeerror (lua_State *L, const TValue *o, const char *opname) |
LUAI_FUNC l_noret | luaG_concaterror (lua_State *L, const TValue *p1, const TValue *p2) |
LUAI_FUNC l_noret | luaG_opinterror (lua_State *L, const TValue *p1, const TValue *p2, const char *msg) |
LUAI_FUNC l_noret | luaG_tointerror (lua_State *L, const TValue *p1, const TValue *p2) |
LUAI_FUNC l_noret | luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2) |
LUAI_FUNC l_noret | luaG_runerror (lua_State *L, const char *fmt,...) |
LUAI_FUNC const char * | luaG_addinfo (lua_State *L, const char *msg, TString *src, int line) |
LUAI_FUNC l_noret | luaG_errormsg (lua_State *L) |
LUAI_FUNC void | luaG_traceexec (lua_State *L) |
#define getfuncline | ( | f, | |
pc ) (((f)->lineinfo) ? (f)->lineinfo[pc] : -1) |
Definition at line 16 of file lua-5.3.6/src/ldebug.h.
#define pcRel | ( | pc, | |
p ) (cast(int, (pc) - (p)->code) - 1) |
Definition at line 14 of file lua-5.3.6/src/ldebug.h.
#define resethookcount | ( | L | ) | (L->hookcount = L->basehookcount) |
Definition at line 18 of file lua-5.3.6/src/ldebug.h.
Definition at line 629 of file lua-5.3.6/src/ldebug.c.
Definition at line 592 of file lua-5.3.6/src/ldebug.c.
Definition at line 618 of file lua-5.1.5/src/ldebug.c.
LUAI_FUNC l_noret luaG_opinterror | ( | lua_State * | L, |
const TValue * | p1, | ||
const TValue * | p2, | ||
const char * | msg ) |
Definition at line 598 of file lua-5.3.6/src/ldebug.c.
Definition at line 596 of file lua-5.1.5/src/ldebug.c.
Definition at line 631 of file lua-5.1.5/src/ldebug.c.
Definition at line 610 of file lua-5.3.6/src/ldebug.c.
Definition at line 667 of file lua-5.3.6/src/ldebug.c.
References CallInfo::callstatus, lua_State::ci, ci_func, CIST_HOOKYIELD, CallInfo::func, getfuncline, lua_State::hookcount, lua_State::hookmask, CallInfo::l, LUA_HOOKCOUNT, LUA_HOOKLINE, LUA_MASKCOUNT, LUA_MASKLINE, LUA_YIELD, luaD_hook(), luaD_throw(), mask, lua_State::oldpc, Proto::p, pcRel, resethookcount, CallInfo::savedpc, lua_State::status, lua_State::top, and CallInfo::u.
Definition at line 567 of file lua-5.1.5/src/ldebug.c.