| 571 | } |
| 572 | |
| 573 | txNumber fxGetArrayLength(txMachine* the, txSlot* reference) |
| 574 | { |
| 575 | txNumber length; |
| 576 | txSlot* instance = fxToInstance(the, reference); |
| 577 | mxPushReference(instance); |
| 578 | mxGetID(mxID(_length)); |
| 579 | length = fxToLength(the, the->stack); |
| 580 | mxPop(); |
| 581 | return length; |
| 582 | } |
| 583 | |
| 584 | txIndex fxGetArrayLimit(txMachine* the, txSlot* reference) |
| 585 | { |
no test coverage detected