mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2026-02-07 19:16:25 +00:00
When shifting a negative BigInt value if the shift count is very "big" the result should be -1. eg.: ``` (-2n >> (2n*32n)) === -1n ``` Note: the `-2n >> (2n*31n)` already returned `-1n` prior this change. JerryScript-DCO-1.0-Signed-off-by: Peter Gal pgal.usz@partner.samsung.com