as3hx
as3hx copied to clipboard
for loops with <= or >= are not converted properly
this code in as3
for (v = 1; v <= 2; v ++)
{
turns into this in haxe
for (v in 1 ... 2)
{
which is wrong