| 3004 | } |
| 3005 | |
| 3006 | COMPAT53_API int lua_absindex(lua_State* L, int i) { |
| 3007 | if (i < 0 && i > LUA_REGISTRYINDEX) |
| 3008 | i += lua_gettop(L) + 1; |
| 3009 | return i; |
| 3010 | } |
| 3011 | |
| 3012 | static void compat53_call_lua(lua_State* L, char const code[], size_t len, int nargs, int nret) { |
| 3013 | lua_rawgetp(L, LUA_REGISTRYINDEX, (void*)code); |
no outgoing calls
no test coverage detected