You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix operator precedence in Binaryen.js tests [NFC] (#7459)
The equality operator (`==`) has higher operator precedence than bitwise
OR (`|`), meaning that `a == b | c` is interpreted like `(a == b) | c`
and not `a == (b | c)`, how it was intended.
0 commit comments