| 4994 | } |
| 4995 | |
| 4996 | txBoolean fxToNumericNumber(txMachine* the, txSlot* theSlot) |
| 4997 | { |
| 4998 | if (theSlot->kind == XS_REFERENCE_KIND) |
| 4999 | fxToPrimitive(the, theSlot, XS_NUMBER_HINT); |
| 5000 | if ((theSlot->kind == XS_BIGINT_KIND) || (theSlot->kind == XS_BIGINT_X_KIND)) |
| 5001 | return 0; |
| 5002 | fxToNumber(the, theSlot); |
| 5003 | return 1; |
| 5004 | } |
| 5005 | |
| 5006 | txBoolean fxToNumericNumberUnary(txMachine* the, txSlot* a, txBigIntUnary op) |
| 5007 | { |
no test coverage detected