** 'ipairs' function. Returns 'ipairsaux', given "table", 0. ** (The given "table" may not be a table.) */
| 312 | ** (The given "table" may not be a table.) |
| 313 | */ |
| 314 | static int luaB_ipairs (lua_State *L) { |
| 315 | luaL_checkany(L, 1); |
| 316 | lua_pushcfunction(L, ipairsaux); /* iteration function */ |
| 317 | lua_pushvalue(L, 1); /* state */ |
| 318 | lua_pushinteger(L, 0); /* initial value */ |
| 319 | return 3; |
| 320 | } |
| 321 | |
| 322 | |
| 323 | static int load_aux (lua_State *L, int status, int envidx) { |
nothing calls this directly
no test coverage detected