Bitwise operators | and & precedence
I still can't believe this is possible. After few days (and nights) of debugging, I found that JSX doesn't confirms with JS specifications about '&' and '|' operators precedence.
In ESTK "1 | 1 & 0" results in 0. It should be the same as "1 | (1 & 0)", which is 1.
The issue I had was with an external minified library crypto-js and the debugging was real pain.
As I could't find this fact documented, I'm still wondering is that by design or it's Adobe's implementation bug?
