| 4957 | } |
| 4958 | |
| 4959 | txBoolean fxToNumericInteger(txMachine* the, txSlot* theSlot) |
| 4960 | { |
| 4961 | if (theSlot->kind == XS_REFERENCE_KIND) |
| 4962 | fxToPrimitive(the, theSlot, XS_NUMBER_HINT); |
| 4963 | if ((theSlot->kind == XS_BIGINT_KIND) || (theSlot->kind == XS_BIGINT_X_KIND)) |
| 4964 | return 0; |
| 4965 | fxToInteger(the, theSlot); |
| 4966 | return 1; |
| 4967 | } |
| 4968 | |
| 4969 | txBoolean fxToNumericIntegerUnary(txMachine* the, txSlot* a, txBigIntUnary op) |
| 4970 | { |
no test coverage detected