as3hx icon indicating copy to clipboard operation
as3hx copied to clipboard

Not correct porting of string + int(int + int)

Open andrew-git opened this issue 7 years ago • 0 comments

c, d - Int as3 code for example:

package {
    public class Issue {
        public function Issue() {
            a = "b" + int (c + d);
        }
    }
}

expected result


class Issue
{
    public function new()
    {
            a = "b" + (c + d);
    }
}

actual result


class Issue
{
    public function new()
    {
            a = "b" + c + d;
    }
}

andrew-git avatar Nov 23 '18 18:11 andrew-git