| 35 | |
| 36 | |
| 37 | static int db_setmetatable (lua_State *L) { |
| 38 | int t = lua_type(L, 2); |
| 39 | luaL_argcheck(L, t == LUA_TNIL || t == LUA_TTABLE, 2, |
| 40 | "nil or table expected"); |
| 41 | lua_settop(L, 2); |
| 42 | lua_pushboolean(L, lua_setmetatable(L, 1)); |
| 43 | return 1; |
| 44 | } |
| 45 | |
| 46 | |
| 47 | static int db_getfenv (lua_State *L) { |
nothing calls this directly
no test coverage detected