| 303 | #if defined(LUA_COMPAT_GETN) |
| 304 | |
| 305 | static int checkint (lua_State *L, int topop) { |
| 306 | int n = (lua_type(L, -1) == LUA_TNUMBER) ? lua_tointeger(L, -1) : -1; |
| 307 | lua_pop(L, topop); |
| 308 | return n; |
| 309 | } |
| 310 | |
| 311 | |
| 312 | static void getsizes (lua_State *L) { |
no test coverage detected