| 193 | } |
| 194 | |
| 195 | txSlot* fxNextTypeDispatchProperty(txMachine* the, txSlot* property, txTypeDispatch* dispatch, txTypeAtomics* atomics, txID id, txFlag flag) |
| 196 | { |
| 197 | property = property->next = fxNewSlot(the); |
| 198 | property->flag = flag; |
| 199 | property->ID = id; |
| 200 | property->kind = XS_TYPED_ARRAY_KIND; |
| 201 | property->value.typedArray.dispatch = dispatch; |
| 202 | property->value.typedArray.atomics = atomics; |
| 203 | return property; |
| 204 | } |
| 205 | |
| 206 | txSlot* fxQueueKey(txMachine* the, txID id, txIndex index, txSlot* keys) |
| 207 | { |
no test coverage detected