File: bigint-and-boolean.js

package info (click to toggle)
qtdeclarative-opensource-src 5.15.2%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 259,220 kB
  • sloc: javascript: 512,396; cpp: 493,894; xml: 8,892; python: 3,304; ansic: 2,764; sh: 206; makefile: 59; php: 27
file content (28 lines) | stat: -rw-r--r-- 1,189 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
// Copyright (C) 2017 Josh Wolfe. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Strict inequality comparison of BigInt and Boolean values
esid: sec-strict-equality-comparison
info: |
  1. If Type(x) is different from Type(y), return false.

features: [BigInt]
---*/

assert.sameValue(-1n !== false, true, "-1n !== false");
assert.sameValue(false !== -1n, true, "false !== -1n");
assert.sameValue(-1n !== true, true, "-1n !== true");
assert.sameValue(true !== -1n, true, "true !== -1n");
assert.sameValue(0n !== false, true, "0n !== false");
assert.sameValue(false !== 0n, true, "false !== 0n");
assert.sameValue(0n !== true, true, "0n !== true");
assert.sameValue(true !== 0n, true, "true !== 0n");
assert.sameValue(1n !== false, true, "1n !== false");
assert.sameValue(false !== 1n, true, "false !== 1n");
assert.sameValue(1n !== true, true, "1n !== true");
assert.sameValue(true !== 1n, true, "true !== 1n");
assert.sameValue(2n !== false, true, "2n !== false");
assert.sameValue(false !== 2n, true, "false !== 2n");
assert.sameValue(2n !== true, true, "2n !== true");
assert.sameValue(true !== 2n, true, "true !== 2n");