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