MCPcopy Create free account
hub / github.com/PolygonTek/BlueshiftEngine / lj_lib_checktab

Function lj_lib_checktab

Source/ThirdParty/luaJIT/src/lj_lib.c:221–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219}
220
221GCtab *lj_lib_checktab(lua_State *L, int narg)
222{
223 TValue *o = L->base + narg-1;
224 if (!(o < L->top && tvistab(o)))
225 lj_err_argt(L, narg, LUA_TTABLE);
226 return tabV(o);
227}
228
229GCtab *lj_lib_checktabornil(lua_State *L, int narg)
230{

Callers 7

lib_ffi.cFile · 0.85
lib_debug.cFile · 0.85
LJLIB_RECFunction · 0.85
LJLIB_ASMFunction · 0.85
lib_base.cFile · 0.85
lib_table.cFile · 0.85
LJLIB_RECFunction · 0.85

Calls 1

lj_err_argtFunction · 0.85

Tested by

no test coverage detected