| 175 | } |
| 176 | |
| 177 | static int luaB_rawset (lua_State *L) { |
| 178 | luaL_checktype(L, 1, LUA_TTABLE); |
| 179 | luaL_checkany(L, 2); |
| 180 | luaL_checkany(L, 3); |
| 181 | lua_settop(L, 3); |
| 182 | lua_rawset(L, 1); |
| 183 | return 1; |
| 184 | } |
| 185 | |
| 186 | |
| 187 | static int luaB_gcinfo (lua_State *L) { |
nothing calls this directly
no test coverage detected