| 244 | |
| 245 | |
| 246 | static int luaB_pairs (lua_State *L) { |
| 247 | luaL_checktype(L, 1, LUA_TTABLE); |
| 248 | lua_pushvalue(L, lua_upvalueindex(1)); /* return generator, */ |
| 249 | lua_pushvalue(L, 1); /* state, */ |
| 250 | lua_pushnil(L); /* and initial value */ |
| 251 | return 3; |
| 252 | } |
| 253 | |
| 254 | |
| 255 | static int ipairsaux (lua_State *L) { |
nothing calls this directly
no test coverage detected