| 335 | |
| 336 | |
| 337 | void luaH_resizearray (lua_State *L, Table *t, int nasize) { |
| 338 | int nsize = isdummy(t->node) ? 0 : sizenode(t); |
| 339 | luaH_resize(L, t, nasize, nsize); |
| 340 | } |
| 341 | |
| 342 | |
| 343 | static void rehash (lua_State *L, Table *t, const TValue *ek) { |
no test coverage detected