| 11039 | } |
| 11040 | |
| 11041 | static int luaB_rawset (lua_State *L) { |
| 11042 | luaL_checktype(L, 1, LUA_TTABLE); |
| 11043 | luaL_checkany(L, 2); |
| 11044 | luaL_checkany(L, 3); |
| 11045 | lua_settop(L, 3); |
| 11046 | lua_rawset(L, 1); |
| 11047 | return 1; |
| 11048 | } |
| 11049 | |
| 11050 | |
| 11051 | static int luaB_gcinfo (lua_State *L) { |
nothing calls this directly
no test coverage detected