mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 11:12:45 +00:00 
			
		
		
		
	|  58c6a156bf 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  | ||
|---|---|---|
| .. | ||
| bigint-basic.js | ||
| bigint-minus.js | ||
| bigint-number-mix-errors.js | ||
| BigInt.js | ||
| BigInt.prototype.@@toStringTag.js | ||
| BigInt.prototype.toLocaleString.js | ||
| BigInt.prototype.toString.js | ||
| BigInt.prototype.valueOf.js | ||