Commits
Click on a commit to change the comparison rangefeat(minifier): bitwise not in exceeded value. (#6235)
```rs
test("x = ~2147483658.0", "x = 2147483637");
test("x = ~-2147483658", "x = -2147483639");
```
Used `wrapping_neg`, and maybe it is a great solution for #6161.