ladybird/Userland/Libraries/LibJS/Tests/builtins/BigInt
Linus Groh 58c6a156bf LibCrypto: Fix subtracting two negative SignedBigIntegers
Currently, we get the following results

    -1 - -2 = -1
    -2 - -1 =  1

Correct would be:

    -1 - -2 =  1
    -2 - -1 = -1

This was already attempted to be fixed in 7ed8970, but that change was
incorrect. This directly translates to LibJS BigInts having the same
incorrect behavior - it even was tested.
2021-11-16 10:06:53 +00:00
..
bigint-basic.js LibJS: Fix typo in LHS Object and RHS BigInt loosely equals check 2021-10-15 01:59:09 +01:00
bigint-minus.js LibCrypto: Fix subtracting two negative SignedBigIntegers 2021-11-16 10:06:53 +00:00
bigint-number-mix-errors.js
BigInt.js
BigInt.prototype.@@toStringTag.js
BigInt.prototype.toLocaleString.js
BigInt.prototype.toString.js
BigInt.prototype.valueOf.js