| 1623 | } |
| 1624 | |
| 1625 | void fxAsyncGeneratorResolveAwait(txMachine* the) |
| 1626 | { |
| 1627 | txSlot* slot = mxFunctionInstanceHome(mxFunction->value.reference); |
| 1628 | txSlot* generator = slot->value.home.object; |
| 1629 | the->scratch.kind = mxArgv(0)->kind; |
| 1630 | the->scratch.value = mxArgv(0)->value; |
| 1631 | fxAsyncGeneratorStep(the, generator, XS_NO_STATUS); |
| 1632 | } |
| 1633 | |
| 1634 | void fxAsyncGeneratorResolveYield(txMachine* the) |
| 1635 | { |
nothing calls this directly
no test coverage detected