using stringbuilder for generating the AS source

This commit is contained in:
Honfika
2013-10-12 21:38:15 +02:00
parent 3f34d66f47
commit 0c9ea12f03
195 changed files with 1522 additions and 841 deletions
@@ -16,6 +16,7 @@
*/
package com.jpexs.decompiler.graph.model;
import com.jpexs.decompiler.flash.helpers.HilightedTextWriter;
import com.jpexs.decompiler.graph.GraphSourceItem;
import com.jpexs.decompiler.graph.GraphTargetItem;
import com.jpexs.decompiler.graph.SourceGenerator;
@@ -38,8 +39,8 @@ public class DuplicateItem extends GraphTargetItem {
}
@Override
public String toString(boolean highlight, List<Object> localData) {
return value.toString(highlight, localData);
public HilightedTextWriter toString(HilightedTextWriter writer, List<Object> localData) {
return value.toString(writer, localData);
}
@Override