| 139 | } |
| 140 | |
| 141 | txSlot* fxNextReferenceProperty(txMachine* the, txSlot* property, txSlot* slot, txID id, txFlag flag) |
| 142 | { |
| 143 | property = property->next = fxNewSlot(the); |
| 144 | property->flag = flag; |
| 145 | property->ID = id; |
| 146 | property->kind = XS_REFERENCE_KIND; |
| 147 | property->value.reference = slot; |
| 148 | return property; |
| 149 | } |
| 150 | |
| 151 | txSlot* fxNextSlotProperty(txMachine* the, txSlot* property, txSlot* slot, txID id, txFlag flag) |
| 152 | { |
no test coverage detected