reflaxe
reflaxe copied to clipboard
Wrong order of operations
var i = 1;
i += i += 1;
// i == 3
will get translated into
var i = 1;
i += 1;
i += i;
// i == 4
with normalizeEIE=true (and convertUnopIncrement=false)