2017-10-02 21:40:32 +02:00
|
|
|
// Copyright (C) 2017 Josh Wolfe. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
description: Comparisons of large BigInt and Number values
|
|
|
|
esid: sec-abstract-relational-comparison
|
|
|
|
info: |
|
|
|
|
...
|
|
|
|
3. If both px and py are Strings, then
|
|
|
|
...
|
|
|
|
4. Else,
|
|
|
|
a. Let nx be ? ToNumeric(px). Because px and py are primitive values evaluation order is not important.
|
|
|
|
b. Let ny be ? ToNumeric(py).
|
|
|
|
c. If Type(nx) is Type(ny), return ? Type(nx)::lessThan(nx, ny).
|
|
|
|
d. Assert: Type(nx) is BigInt and Type(ny) is Number, or if Type(nx) is Number and Type(ny) is BigInt.
|
|
|
|
e. If x or y are any of NaN, return undefined.
|
|
|
|
f. If x is -∞, or y is +∞, return true.
|
|
|
|
g. If x is +∞, or y is -∞, return false.
|
|
|
|
h. If the mathematical value of nx is less than the mathematical value of ny, return true, otherwise return false.
|
|
|
|
features: [BigInt]
|
|
|
|
---*/
|
|
|
|
|
2017-10-06 11:25:58 +02:00
|
|
|
assert.sameValue(1n >= Number.MAX_VALUE, false, "1n >= Number.MAX_VALUE");
|
|
|
|
assert.sameValue(Number.MAX_VALUE >= 1n, true, "Number.MAX_VALUE >= 1n");
|
|
|
|
assert.sameValue(1n >= -Number.MAX_VALUE, true, "1n >= -Number.MAX_VALUE");
|
|
|
|
assert.sameValue(-Number.MAX_VALUE >= 1n, false, "-Number.MAX_VALUE >= 1n");
|
2017-10-02 21:40:32 +02:00
|
|
|
assert.sameValue(
|
|
|
|
0xfffffffffffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffn >= Number.MAX_VALUE,
|
2017-10-06 11:25:58 +02:00
|
|
|
false,
|
|
|
|
"0xfffffffffffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffn >= Number.MAX_VALUE");
|
2017-10-02 21:40:32 +02:00
|
|
|
assert.sameValue(
|
|
|
|
Number.MAX_VALUE >= 0xfffffffffffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffn,
|
2017-10-06 11:25:58 +02:00
|
|
|
true,
|
|
|
|
"Number.MAX_VALUE >= 0xfffffffffffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffn");
|
2017-10-02 21:40:32 +02:00
|
|
|
assert.sameValue(
|
|
|
|
0xfffffffffffff800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001n >= Number.MAX_VALUE,
|
2017-10-06 11:25:58 +02:00
|
|
|
true,
|
|
|
|
"0xfffffffffffff800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001n >= Number.MAX_VALUE");
|
2017-10-02 21:40:32 +02:00
|
|
|
assert.sameValue(
|
|
|
|
Number.MAX_VALUE >= 0xfffffffffffff800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001n,
|
2017-10-06 11:25:58 +02:00
|
|
|
false,
|
|
|
|
"Number.MAX_VALUE >= 0xfffffffffffff800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001n");
|