| 624 | } |
| 625 | |
| 626 | void fxIndexArray(txMachine* the, txSlot* array) |
| 627 | { |
| 628 | txSlot* address = array->value.array.address; |
| 629 | if (address) { |
| 630 | txIndex size = (((txChunk*)(((txByte*)address) - sizeof(txChunk)))->size) / sizeof(txSlot); |
| 631 | txIndex index = 0; |
| 632 | while (index < size) { |
| 633 | *((txIndex*)address) = index; |
| 634 | address->flag = XS_NO_FLAG; |
| 635 | address++; |
| 636 | index++; |
| 637 | } |
| 638 | } |
| 639 | } |
| 640 | |
| 641 | txBoolean fxIsArray(txMachine* the, txSlot* instance) |
| 642 | { |
no outgoing calls
no test coverage detected