ES6NumberAPIs.baseline 1.4 KB

123456789101112131415161718192021
  1. *** Running test #1 (0): Number constructor and prototype should have spec defined built-ins with correct lengths
  2. PASSED
  3. *** Running test #2 (1): EPSILON is approximately 2.220446049250313e-16
  4. PASSED
  5. *** Running test #3 (2): MAX_SAFE_INTEGER and MIN_SAFE_INTEGER are exactly +/-9007199254740991
  6. PASSED
  7. *** Running test #4 (3): parseInt parses integers in a given string in the given radix -- same as the global object's parseInt
  8. PASSED
  9. *** Running test #5 (4): parseFloat parses floats in a given string -- same as the global object's parseFloat
  10. PASSED
  11. *** Running test #6 (5): isNaN behaves similar to the global object's isNaN except it does not coerce its argument to Number
  12. PASSED
  13. *** Running test #7 (6): isFinite behaves similar to the global object's isFinite except it does not coerce its argument to Number
  14. PASSED
  15. *** Running test #8 (7): isInteger returns true if its argument is a number and, after coercion via ToInteger abstract operation, is the same value, false otherwise
  16. PASSED
  17. *** Running test #9 (8): isSafeInteger returns true if its argument is a number and, after coercion via ToInteger abstract operation, is the same value, false otherwise
  18. PASSED
  19. *** Running test #10 (9): clz returns the number of leading zero bits of the unsigned 32 bit integer representation of the this argument
  20. PASSED
  21. Summary of tests: total executed: 10; passed: 10; failed: 0