| 780 | } |
| 781 | |
| 782 | static void invoke_resize(lua_State *state, int table, lua_Integer size) |
| 783 | { |
| 784 | lua_getfield(state, table, "resize"); |
| 785 | lua_pushvalue(state, table); |
| 786 | lua_pushinteger(state, size); |
| 787 | lua_call(state, 2, 0); |
| 788 | } |
| 789 | |
| 790 | static void copy_table(lua_State *state, int dest, int src, int skipbase) |
| 791 | { |
no test coverage detected