| 167 | |
| 168 | |
| 169 | static int luaB_rawget (lua_State *L) { |
| 170 | luaL_checktype(L, 1, LUA_TTABLE); |
| 171 | luaL_checkany(L, 2); |
| 172 | lua_settop(L, 2); |
| 173 | lua_rawget(L, 1); |
| 174 | return 1; |
| 175 | } |
| 176 | |
| 177 | static int luaB_rawset (lua_State *L) { |
| 178 | luaL_checktype(L, 1, LUA_TTABLE); |
nothing calls this directly
no test coverage detected