File: bigint-and-number.js

package info (click to toggle)
qt6-declarative 6.4.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 279,108 kB
  • sloc: cpp: 655,548; javascript: 513,497; xml: 9,201; python: 3,374; ansic: 3,278; sh: 213; php: 27; makefile: 17
file content (33 lines) | stat: -rw-r--r-- 1,686 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright (C) 2017 Josh Wolfe. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Non-strict equality comparison of BigInt and Number values
esid: sec-abstract-equality-comparison
info: |
  12. If Type(x) is BigInt and Type(y) is Number, or if Type(x) is Number and Type(y) is BigInt,
    b. If the mathematical value of x is equal to the mathematical value of y, return true, otherwise return false.

features: [BigInt]
---*/

assert.sameValue(0n == 0, true, "0n == 0");
assert.sameValue(0 == 0n, true, "0 == 0n");
assert.sameValue(0n == -0, true, "0n == -0");
assert.sameValue(-0 == 0n, true, "-0 == 0n");
assert.sameValue(0n == 0.000000000001, false, "0n == 0.000000000001");
assert.sameValue(0.000000000001 == 0n, false, "0.000000000001 == 0n");
assert.sameValue(0n == 1, false, "0n == 1");
assert.sameValue(1 == 0n, false, "1 == 0n");
assert.sameValue(1n == 0, false, "1n == 0");
assert.sameValue(0 == 1n, false, "0 == 1n");
assert.sameValue(1n == 0.999999999999, false, "1n == 0.999999999999");
assert.sameValue(0.999999999999 == 1n, false, "0.999999999999 == 1n");
assert.sameValue(1n == 1, true, "1n == 1");
assert.sameValue(1 == 1n, true, "1 == 1n");
assert.sameValue(0n == Number.MIN_VALUE, false, "0n == Number.MIN_VALUE");
assert.sameValue(Number.MIN_VALUE == 0n, false, "Number.MIN_VALUE == 0n");
assert.sameValue(0n == -Number.MIN_VALUE, false, "0n == -Number.MIN_VALUE");
assert.sameValue(-Number.MIN_VALUE == 0n, false, "-Number.MIN_VALUE == 0n");
assert.sameValue(-10n == Number.MIN_VALUE, false, "-10n == Number.MIN_VALUE");
assert.sameValue(Number.MIN_VALUE == -10n, false, "Number.MIN_VALUE == -10n");