| 661 | } |
| 662 | |
| 663 | void fxRejectException(txMachine* the, txSlot* rejectFunction) |
| 664 | { |
| 665 | /* THIS */ |
| 666 | mxPushUndefined(); |
| 667 | /* FUNCTION */ |
| 668 | mxPushSlot(rejectFunction); |
| 669 | mxCall(); |
| 670 | /* ARGUMENTS */ |
| 671 | mxPush(mxException); |
| 672 | mxException = mxUndefined; |
| 673 | mxRunCount(1); |
| 674 | mxPop(); |
| 675 | } |
| 676 | |
| 677 | void fxRejectPromise(txMachine* the) |
| 678 | { |
no outgoing calls
no test coverage detected