| 364 | |
| 365 | |
| 366 | int Script::Next(lua_State* pState) { |
| 367 | // 1 table |
| 368 | // [2 key] (optional) |
| 369 | if (lua_gettop(pState) < 2) |
| 370 | lua_pushnil(pState); |
| 371 | return Script::Next(pState, 1); |
| 372 | } |
| 373 | |
| 374 | int Script::Next(lua_State* pState,int index) { |
| 375 | // -1 is key |
nothing calls this directly
no outgoing calls
no test coverage detected