Home
last modified time | relevance | path

Searched refs:lua_istable (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/bsd/lutok/dist/
H A Dstate.cpp468 return lua_istable(_pimpl->lua_state, index); in is_table()
554 assert(lua_istable(_pimpl->lua_state, index)); in next()
H A Dstate_test.cpp271 ATF_REQUIRE(lua_istable(raw(state), -1)); in ATF_TEST_CASE_BODY()
290 ATF_REQUIRE(lua_istable(raw(state), -1)); in ATF_TEST_CASE_BODY()
689 ATF_REQUIRE(lua_istable(raw(state), -1)); in ATF_TEST_CASE_BODY()
/netbsd-src/external/mit/lua/dist/src/
H A Dlua.h408 #define lua_istable(L,n) (lua_type(L, (n)) == LUA_TTABLE) macro
H A Dlauxlib.c59 if (level == 0 || !lua_istable(L, -1)) in findfield()