| 171 | } |
| 172 | |
| 173 | LUA_API void xlua_rawseti (lua_State *L, int idx, int64_t n) { |
| 174 | lua_rawseti(L, idx, (lua_Integer)n); |
| 175 | } |
| 176 | |
| 177 | LUA_API int xlua_ref_indirect(lua_State *L, int indirectRef) { |
| 178 | int ret = 0; |
nothing calls this directly
no test coverage detected