| 11100 | |
| 11101 | |
| 11102 | static int luaB_pairs (lua_State *L) { |
| 11103 | luaL_checktype(L, 1, LUA_TTABLE); |
| 11104 | lua_pushvalue(L, lua_upvalueindex(1)); /* return generator, */ |
| 11105 | lua_pushvalue(L, 1); /* state, */ |
| 11106 | lua_pushnil(L); /* and initial value */ |
| 11107 | return 3; |
| 11108 | } |
| 11109 | |
| 11110 | |
| 11111 | static int ipairsaux (lua_State *L) { |
nothing calls this directly
no test coverage detected