| 2585 | } |
| 2586 | |
| 2587 | COMPAT53_API int lua_rawgetp(lua_State *L, int i, const void *p) { |
| 2588 | int abs_i = lua_absindex(L, i); |
| 2589 | lua_pushlightuserdata(L, (void*)p); |
| 2590 | lua_rawget(L, abs_i); |
| 2591 | return lua_type(L, -1); |
| 2592 | } |
| 2593 | |
| 2594 | COMPAT53_API void lua_rawsetp(lua_State *L, int i, const void *p) { |
| 2595 | int abs_i = lua_absindex(L, i); |
no test coverage detected