| 515 | } |
| 516 | |
| 517 | void fxArrayCacheItem(txMachine* the, txSlot* reference, txSlot* item) |
| 518 | { |
| 519 | txSlot* array = reference->value.reference->next; |
| 520 | txSlot* slot = fxNewSlot(the); |
| 521 | slot->next = array->next; |
| 522 | slot->kind = item->kind; |
| 523 | slot->value = item->value; |
| 524 | array->next = slot; |
| 525 | array->value.array.length++; |
| 526 | } |
| 527 | |
| 528 | /* Host Constructors, Functions and Objects */ |
| 529 |
no test coverage detected