| 11119 | |
| 11120 | |
| 11121 | static int luaB_ipairs (lua_State *L) { |
| 11122 | luaL_checktype(L, 1, LUA_TTABLE); |
| 11123 | lua_pushvalue(L, lua_upvalueindex(1)); /* return generator, */ |
| 11124 | lua_pushvalue(L, 1); /* state, */ |
| 11125 | lua_pushinteger(L, 0); /* and initial value */ |
| 11126 | return 3; |
| 11127 | } |
| 11128 | |
| 11129 | |
| 11130 | static int load_aux (lua_State *L, int status) { |
nothing calls this directly
no test coverage detected