| 156 | |
| 157 | |
| 158 | static int luaB_rawget (lua_State *L) { |
| 159 | luaL_checktype(L, 1, LUA_TTABLE); |
| 160 | luaL_checkany(L, 2); |
| 161 | lua_settop(L, 2); |
| 162 | lua_rawget(L, 1); |
| 163 | return 1; |
| 164 | } |
| 165 | |
| 166 | static int luaB_rawset (lua_State *L) { |
| 167 | luaL_checktype(L, 1, LUA_TTABLE); |
nothing calls this directly
no test coverage detected