SomeRanDev / reflaxe

Haxe framework for creating compilation targets using macros
MIT License
91 stars 4 forks source link

Wrong order of operations #17

Open fourst4r opened 7 months ago

fourst4r commented 7 months ago
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)