| 129 | } |
| 130 | |
| 131 | txSlot* fxNextNumberProperty(txMachine* the, txSlot* property, txNumber number, txID id, txFlag flag) |
| 132 | { |
| 133 | property = property->next = fxNewSlot(the); |
| 134 | property->flag = flag; |
| 135 | property->ID = id; |
| 136 | property->kind = XS_NUMBER_KIND; |
| 137 | property->value.number = number; |
| 138 | return property; |
| 139 | } |
| 140 | |
| 141 | txSlot* fxNextReferenceProperty(txMachine* the, txSlot* property, txSlot* slot, txID id, txFlag flag) |
| 142 | { |
no test coverage detected