as3hx
as3hx copied to clipboard
wrong semicolon in presence of 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 ;
}
}