| 167 | } |
| 168 | |
| 169 | LUA_API void lua_insert(lua_State *L, int idx) |
| 170 | { |
| 171 | TValue *q, *p = index2adr_stack(L, idx); |
| 172 | for (q = L->top; q > p; q--) copyTV(L, q, q-1); |
| 173 | copyTV(L, p, L->top); |
| 174 | } |
| 175 | |
| 176 | static void copy_slot(lua_State *L, TValue *f, int idx) |
| 177 | { |
no test coverage detected