| 109 | } |
| 110 | |
| 111 | txSlot* fxNextBooleanProperty(txMachine* the, txSlot* property, txBoolean boolean, txID id, txFlag flag) |
| 112 | { |
| 113 | property = property->next = fxNewSlot(the); |
| 114 | property->flag = flag; |
| 115 | property->ID = id; |
| 116 | property->kind = XS_BOOLEAN_KIND; |
| 117 | property->value.boolean = boolean; |
| 118 | return property; |
| 119 | } |
| 120 | |
| 121 | txSlot* fxNextIntegerProperty(txMachine* the, txSlot* property, txInteger integer, txID id, txFlag flag) |
| 122 | { |
no test coverage detected