对象控制函数(这些方法将被转发到对象池)
| 560 | |
| 561 | // 对象控制函数(这些方法将被转发到对象池) |
| 562 | static int GetnObj(lua_State* L)LNOEXCEPT |
| 563 | { |
| 564 | lua_pushinteger(L, (lua_Integer)LPOOL.GetObjectCount()); |
| 565 | return 1; |
| 566 | } |
| 567 | static int UpdateObjList(lua_State* L)LNOEXCEPT |
| 568 | { |
| 569 | // ! 该函数已被否决 |
nothing calls this directly
no test coverage detected