| 54 | |
| 55 | |
| 56 | static int db_setmetatable (lua_State *L) { |
| 57 | int t = lua_type(L, 2); |
| 58 | luaL_argexpected(L, t == LUA_TNIL || t == LUA_TTABLE, 2, "nil or table"); |
| 59 | lua_settop(L, 2); |
| 60 | lua_setmetatable(L, 1); |
| 61 | return 1; /* return 1st argument */ |
| 62 | } |
| 63 | |
| 64 | |
| 65 | static int db_getuservalue (lua_State *L) { |
nothing calls this directly
no test coverage detected