| 167 | } |
| 168 | |
| 169 | LUA_API void xlua_rawgeti (lua_State *L, int idx, int64_t n) { |
| 170 | lua_rawgeti(L, idx, (lua_Integer)n); |
| 171 | } |
| 172 | |
| 173 | LUA_API void xlua_rawseti (lua_State *L, int idx, int64_t n) { |
| 174 | lua_rawseti(L, idx, (lua_Integer)n); |
no test coverage detected