| 632 | } |
| 633 | |
| 634 | void fxResolveAwait(txMachine* the) |
| 635 | { |
| 636 | txSlot* slot = mxFunctionInstanceHome(mxFunction->value.reference); |
| 637 | txSlot* instance = slot->value.home.object; |
| 638 | the->scratch.kind = mxArgv(0)->kind; |
| 639 | the->scratch.value = mxArgv(0)->value; |
| 640 | fxStepAsync(the, instance, XS_NO_STATUS); |
| 641 | } |
| 642 | |
| 643 | void fxRejectAwait(txMachine* the) |
| 644 | { |
nothing calls this directly
no test coverage detected