| 100 | } |
| 101 | |
| 102 | txSlot* fxNextNullProperty(txMachine* the, txSlot* property, txID id, txFlag flag) |
| 103 | { |
| 104 | property = property->next = fxNewSlot(the); |
| 105 | property->flag = flag; |
| 106 | property->ID = id; |
| 107 | property->kind = XS_NULL_KIND; |
| 108 | return property; |
| 109 | } |
| 110 | |
| 111 | txSlot* fxNextBooleanProperty(txMachine* the, txSlot* property, txBoolean boolean, txID id, txFlag flag) |
| 112 | { |
no test coverage detected