| 650 | } |
| 651 | |
| 652 | void fxRunAsync(txMachine* the, txSlot* instance) |
| 653 | { |
| 654 | txSlot* promise = instance->next->next->next; |
| 655 | fxBeginHost(the); |
| 656 | the->scratch.kind = XS_UNDEFINED_KIND; |
| 657 | fxStepAsync(the, instance, XS_NO_STATUS); |
| 658 | fxEndHost(the); |
| 659 | mxResult->kind = promise->kind; |
| 660 | mxResult->value = promise->value; |
| 661 | } |
| 662 | |
| 663 | void fxStepAsync(txMachine* the, txSlot* instance, txFlag status) |
| 664 | { |
nothing calls this directly
no test coverage detected