| 130 | } |
| 131 | |
| 132 | static int luaB_rawset (lua_State *L) { |
| 133 | luaL_checktype(L, 1, LUA_TTABLE); |
| 134 | luaL_checkany(L, 2); |
| 135 | luaL_checkany(L, 3); |
| 136 | lua_settop(L, 3); |
| 137 | lua_rawset(L, 1); |
| 138 | return 1; |
| 139 | } |
| 140 | |
| 141 | |
| 142 | static int luaB_collectgarbage (lua_State *L) { |
nothing calls this directly
no test coverage detected