| 149 | } |
| 150 | |
| 151 | txSlot* fxNextSlotProperty(txMachine* the, txSlot* property, txSlot* slot, txID id, txFlag flag) |
| 152 | { |
| 153 | property = property->next = fxNewSlot(the); |
| 154 | property->flag = flag; |
| 155 | property->ID = id; |
| 156 | property->kind = slot->kind; |
| 157 | property->value = slot->value; |
| 158 | return property; |
| 159 | } |
| 160 | |
| 161 | txSlot* fxNextStringProperty(txMachine* the, txSlot* property, txString string, txID id, txFlag flag) |
| 162 | { |
no test coverage detected