mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 16:19:23 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
parent
950e819ee7
commit
93712b24bf
Notes:
github-actions[bot]
2024-11-10 11:51:52 +00:00
Author: https://github.com/trflynn89
Commit: 93712b24bf
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2256
Reviewed-by: https://github.com/sideshowbarker
4547 changed files with 104 additions and 113 deletions
63
Libraries/LibJS/Tests/operators/binary-bitwise-xor.js
Normal file
63
Libraries/LibJS/Tests/operators/binary-bitwise-xor.js
Normal file
|
@ -0,0 +1,63 @@
|
|||
test("basic numeric xor", () => {
|
||||
expect(0 ^ 0).toBe(0);
|
||||
expect(0 ^ 1).toBe(1);
|
||||
expect(0 ^ 2).toBe(2);
|
||||
expect(0 ^ 3).toBe(3);
|
||||
expect(0 ^ 4).toBe(4);
|
||||
expect(0 ^ 5).toBe(5);
|
||||
|
||||
expect(1 ^ 0).toBe(1);
|
||||
expect(1 ^ 1).toBe(0);
|
||||
expect(1 ^ 2).toBe(3);
|
||||
expect(1 ^ 3).toBe(2);
|
||||
expect(1 ^ 4).toBe(5);
|
||||
expect(1 ^ 5).toBe(4);
|
||||
|
||||
expect(2 ^ 0).toBe(2);
|
||||
expect(2 ^ 1).toBe(3);
|
||||
expect(2 ^ 2).toBe(0);
|
||||
expect(2 ^ 3).toBe(1);
|
||||
expect(2 ^ 4).toBe(6);
|
||||
expect(2 ^ 5).toBe(7);
|
||||
|
||||
expect(3 ^ 0).toBe(3);
|
||||
expect(3 ^ 1).toBe(2);
|
||||
expect(3 ^ 2).toBe(1);
|
||||
expect(3 ^ 3).toBe(0);
|
||||
expect(3 ^ 4).toBe(7);
|
||||
expect(3 ^ 5).toBe(6);
|
||||
|
||||
expect(4 ^ 0).toBe(4);
|
||||
expect(4 ^ 1).toBe(5);
|
||||
expect(4 ^ 2).toBe(6);
|
||||
expect(4 ^ 3).toBe(7);
|
||||
expect(4 ^ 4).toBe(0);
|
||||
expect(4 ^ 5).toBe(1);
|
||||
|
||||
expect(5 ^ 0).toBe(5);
|
||||
expect(5 ^ 1).toBe(4);
|
||||
expect(5 ^ 2).toBe(7);
|
||||
expect(5 ^ 3).toBe(6);
|
||||
expect(5 ^ 4).toBe(1);
|
||||
expect(5 ^ 5).toBe(0);
|
||||
|
||||
expect(0xffffffff ^ 0).toBe(-1);
|
||||
expect(0xffffffff ^ 0xffffffff).toBe(0);
|
||||
});
|
||||
|
||||
test("xor with non-numeric values", () => {
|
||||
let x = 3;
|
||||
let y = 7;
|
||||
|
||||
expect("42" ^ 6).toBe(44);
|
||||
expect(x ^ y).toBe(4);
|
||||
expect(x ^ [[[[12]]]]).toBe(15);
|
||||
expect(undefined ^ y).toBe(7);
|
||||
expect("a" ^ "b").toBe(0);
|
||||
expect(null ^ null).toBe(0);
|
||||
expect(undefined ^ undefined).toBe(0);
|
||||
expect(NaN ^ NaN).toBe(0);
|
||||
expect(NaN ^ 6).toBe(6);
|
||||
expect(Infinity ^ Infinity).toBe(0);
|
||||
expect(-Infinity ^ Infinity).toBe(0);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue