mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-16 01:42:07 +00:00
Fixed Incorrect debugger line numbers when "Open loaded while playing" is enabled
Fixed AS3 debugger - Slow injecting debug info - now faster
Fixed AS3 debugger - obfuscated classes debugging
Fixed Delayed open loaded SWFs while playing
Fixed AS3 Direct editation - script initializer for main document class
Changed Wrong unicode escape `{invalid_utf8:xxx}` changed to `{invalid_utf8=xxx}` for compatibility with file names
This commit is contained in:
@@ -328,6 +328,7 @@ public abstract class GraphTargetItem implements Serializable, Cloneable {
|
||||
public String toString(LocalData localData) throws InterruptedException {
|
||||
HighlightedTextWriter writer = new HighlightedTextWriter(Configuration.getCodeFormatting(), false);
|
||||
toString(writer, localData);
|
||||
writer.finishHilights();
|
||||
return writer.toString();
|
||||
}
|
||||
|
||||
@@ -422,6 +423,7 @@ public abstract class GraphTargetItem implements Serializable, Cloneable {
|
||||
try {
|
||||
HighlightedTextWriter writer = new HighlightedTextWriter(Configuration.getCodeFormatting(), false);
|
||||
toStringNoQuotes(writer, localData);
|
||||
writer.finishHilights();
|
||||
return writer.toString();
|
||||
} catch (InterruptedException ex) {
|
||||
//ignore
|
||||
|
||||
Reference in New Issue
Block a user