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