| 91 | #endif |
| 92 | |
| 93 | txSlot* fxNextUndefinedProperty(txMachine* the, txSlot* property, txID id, txFlag flag) |
| 94 | { |
| 95 | property = property->next = fxNewSlot(the); |
| 96 | property->flag = flag; |
| 97 | property->ID = id; |
| 98 | property->kind = XS_UNDEFINED_KIND; |
| 99 | return property; |
| 100 | } |
| 101 | |
| 102 | txSlot* fxNextNullProperty(txMachine* the, txSlot* property, txID id, txFlag flag) |
| 103 | { |
no test coverage detected