| 225 | } |
| 226 | |
| 227 | static int luaB_rawset (lua_State *L) { |
| 228 | luaL_checktype(L, 1, LUA_TTABLE); |
| 229 | #ifdef PLUTO_ENABLE_TABLE_FREEZING |
| 230 | lua_erriffrozen(L, 1); |
| 231 | #endif |
| 232 | luaL_checkany(L, 2); |
| 233 | luaL_checkany(L, 3); |
| 234 | lua_settop(L, 3); |
| 235 | lua_rawset(L, 1); |
| 236 | return 1; |
| 237 | } |
| 238 | |
| 239 | |
| 240 | static int pushmode (lua_State *L, int oldmode) { |
nothing calls this directly
no test coverage detected