merged honfika changes + some fixes to make tests work

This commit is contained in:
Jindra Pet��k
2013-08-25 16:09:42 +02:00
448 changed files with 7155 additions and 626 deletions
@@ -1113,8 +1113,8 @@ public class XFLConverter {
}
private static String convertActionScript(ASMSource as) {
String decompiledASHilighted = Action.actionsToSource(as.getActions(SWF.DEFAULT_VERSION), SWF.DEFAULT_VERSION, as.toString());
return as.getActionSourcePrefix() + Helper.indentRows(as.getActionSourceIndent(), Highlighting.stripHilights(decompiledASHilighted), Graph.INDENT_STRING) + as.getActionSourceSuffix();
String decompiledAS = Action.actionsToSource(as.getActions(SWF.DEFAULT_VERSION), SWF.DEFAULT_VERSION, as.toString(), false);
return as.getActionSourcePrefix() + Helper.indentRows(as.getActionSourceIndent(), decompiledAS, Graph.INDENT_STRING) + as.getActionSourceSuffix();
}
private static long getTimestamp() {