** Clear new slice of the array. */
| 692 | ** Clear new slice of the array. |
| 693 | */ |
| 694 | static void clearNewSlice (Table *t, unsigned oldasize, unsigned newasize) { |
| 695 | for (; oldasize < newasize; oldasize++) |
| 696 | *getArrTag(t, oldasize) = LUA_VEMPTY; |
| 697 | } |
| 698 | |
| 699 | |
| 700 | /* |