Searched refs:lua_istable (Results 1 – 3 of 3) sorted by relevance
44 if (level == 0 || !lua_istable(L, -1)) in findfield()783 else if (!lua_istable(L, -1)) { /* field has a non-table value? */ in luaL_findtable()814 if (!lua_istable(L, -1)) { /* not found? */ in luaL_pushmodule()868 if (lua_istable(L, -1)) return 1; /* table already there */ in luaL_getsubtable()
483 if (!lua_istable(L, 3)) in findloader()
332 #define lua_istable(L,n) (lua_type(L, (n)) == LUA_TTABLE) macro