AS3: Better semicolon insertion

This commit is contained in:
Jindra Pet��k
2012-12-20 21:02:11 +01:00
parent 3d775b283b
commit d7843ea832
31 changed files with 104 additions and 39 deletions
@@ -45,7 +45,7 @@ public class ConstructSuperTreeItem extends TreeItem {
}
String calee = object.toString(constants) + ".";
if (Highlighting.stripHilights(calee).equals("this.")) calee = "";
return calee + hilight("super(") + argStr + hilight(");");
return calee + hilight("super(") + argStr + hilight(")");
}