AS3: highlighting fix

This commit is contained in:
Jindra Petk
2013-01-01 20:24:06 +01:00
parent a5af1ce124
commit 900099e7df

View File

@@ -46,7 +46,7 @@ public class IfTreeItem extends TreeItem implements Block {
}
ret += hilight("}");
if (onFalse.size() > 0) {
ret += hilight("\r\nelse\r\n{\r\n");
ret += "\r\n"+hilight("else")+"\r\n"+hilight("{")+"\r\n";
for (TreeItem ti : onFalse) {
ret += ti.toStringSemicoloned(constants, localRegNames, fullyQualifiedNames) + "\r\n";
}