Skip to content

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

@andrew-git

Description

@andrew-git

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;
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions