| 168 | } |
| 169 | |
| 170 | txSlot* fxNextStringXProperty(txMachine* the, txSlot* property, txString string, txID id, txFlag flag) |
| 171 | { |
| 172 | property = property->next = fxNewSlot(the); |
| 173 | property->flag = flag; |
| 174 | property->ID = id; |
| 175 | #ifdef mxSnapshot |
| 176 | fxCopyStringC(the, property, string); |
| 177 | #else |
| 178 | property->kind = XS_STRING_X_KIND; |
| 179 | property->value.string = string; |
| 180 | #endif |
| 181 | return property; |
| 182 | } |
| 183 | |
| 184 | |
| 185 | txSlot* fxNextSymbolProperty(txMachine* the, txSlot* property, txID symbol, txID id, txFlag flag) |
no test coverage detected