| 184 | } |
| 185 | |
| 186 | LUA_API void xlua_getref_indirect(lua_State *L, int indirectRef, int reference) { |
| 187 | lua_rawgeti(L, LUA_REGISTRYINDEX, indirectRef); |
| 188 | lua_rawgeti(L, -1, reference); |
| 189 | lua_remove(L, -2); |
| 190 | } |
| 191 | |
| 192 | LUA_API int xlua_tointeger (lua_State *L, int idx) { |
| 193 | return (int)lua_tointeger(L, idx); |
nothing calls this directly
no test coverage detected