AS3 automatic deobfuscation, better identifiers renaming

This commit is contained in:
Jindra Petk
2013-01-29 20:41:49 +01:00
parent c26a46139e
commit 5a422fd18f
9 changed files with 168 additions and 118 deletions

View File

@@ -102,7 +102,8 @@ public class ASMSourceEditorPane extends LineMarkedEditorPane implements CaretLi
@Override
public void setText(String t) {
disassembledHilights = Highlighting.getInstrHighlights(t);
super.setText(Highlighting.stripHilights(t));
t=Highlighting.stripHilights(t);
super.setText(t);
}
public void verify(ConstantPool constants, ABC abc) {