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