| 667 | } |
| 668 | |
| 669 | txBoolean fxSetRecordHas(txMachine* the, txSlot* other, txSlot* otherHas, txSlot* value) |
| 670 | { |
| 671 | txBoolean result; |
| 672 | mxPushSlot(other); |
| 673 | mxPushSlot(otherHas); |
| 674 | mxCall(); |
| 675 | mxPushSlot(value); |
| 676 | mxRunCount(1); |
| 677 | result = fxToBoolean(the, the->stack); |
| 678 | mxPop(); |
| 679 | return result; |
| 680 | } |
| 681 | |
| 682 | void fxSetRecordKeys(txMachine* the, txSlot* other, txSlot* otherKeys, txSlot** iterator, txSlot** next, txSlot** value) |
| 683 | { |
no test coverage detected