| 148 | } |
| 149 | |
| 150 | static int luaB_rawset (lua_State *L) { |
| 151 | luaL_checktype(L, 1, LUA_TTABLE); |
| 152 | luaL_checkany(L, 2); |
| 153 | luaL_checkany(L, 3); |
| 154 | lua_settop(L, 3); |
| 155 | lua_rawset(L, 1); |
| 156 | return 1; |
| 157 | } |
| 158 | |
| 159 | |
| 160 | static int luaB_collectgarbage (lua_State *L) { |
nothing calls this directly
no test coverage detected