| 42 | #define fxPush(_SLOT) (*(--the->stack) = (_SLOT)) |
| 43 | |
| 44 | void _xsNewArray(txMachine *the, txSlot *res, txInteger length) |
| 45 | { |
| 46 | fxNewArray(the, length); |
| 47 | *res = fxPop(); |
| 48 | } |
| 49 | |
| 50 | void _xsNewObject(txMachine *the, txSlot *res) |
| 51 | { |
nothing calls this directly
no test coverage detected