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