as3hx icon indicating copy to clipboard operation
as3hx copied to clipboard

wrong semicolon in presence of comments

Open ProdigytTest opened this issue 7 years ago • 0 comments
trafficstars

as3 code for example:

package {
    public class Issue {
        public function Issue() {
          var myVar:Srting="foo"  
          //comment
        }
    }
}

expected result


class Issue
{
    public function new()
    {
          var myVar:Srting="foo" ; 
          //comment
    }
}

actual result


class Issue
{
    public function new()
    {
           var myVar:Srting="foo"  //comment ;
    }
}

ProdigytTest avatar Feb 04 '18 00:02 ProdigytTest