| 1573 | } |
| 1574 | |
| 1575 | void fxAsyncGeneratorRejectAwait(txMachine* the) |
| 1576 | { |
| 1577 | txSlot* slot = mxFunctionInstanceHome(mxFunction->value.reference); |
| 1578 | txSlot* generator = slot->value.home.object; |
| 1579 | the->scratch.kind = mxArgv(0)->kind; |
| 1580 | the->scratch.value = mxArgv(0)->value; |
| 1581 | fxAsyncGeneratorStep(the, generator, XS_THROW_STATUS); |
| 1582 | } |
| 1583 | |
| 1584 | void fxAsyncGeneratorRejectYield(txMachine* the) |
| 1585 | { |
nothing calls this directly
no test coverage detected