| 757 | return LPOOL.NextObject(L); |
| 758 | } |
| 759 | static int ObjList(lua_State* L)LNOEXCEPT |
| 760 | { |
| 761 | int g = luaL_checkinteger(L, 1); // i(groupId) |
| 762 | lua_pushcfunction(L, WrapperImplement::NextObject); |
| 763 | lua_pushinteger(L, g); |
| 764 | lua_pushinteger(L, LPOOL.FirstObject(g)); |
| 765 | return 3; |
| 766 | } |
| 767 | static int ObjMetaIndex(lua_State* L)LNOEXCEPT |
| 768 | { |
| 769 | return LPOOL.GetAttr(L); |
nothing calls this directly
no test coverage detected