| 265 | |
| 266 | |
| 267 | static int luaB_rawget(lua_State *L) { |
| 268 | luaL_checktype(L, 1, LUA_TTABLE); |
| 269 | luaL_checkany(L, 2); |
| 270 | lua_settop(L, 2); |
| 271 | lua_rawget(L, 1); |
| 272 | return 1; |
| 273 | } |
| 274 | |
| 275 | static int luaB_rawset(lua_State *L) { |
| 276 | luaL_checktype(L, 1, LUA_TTABLE); |
nothing calls this directly
no test coverage detected