commandline swf info deobfuscate document class

This commit is contained in:
Jindra Petřík
2015-10-23 07:01:41 +02:00
parent 7000d3b78b
commit f0820414c9

View File

@@ -19,6 +19,7 @@ package com.jpexs.decompiler.flash.console;
import com.jpexs.decompiler.flash.AbortRetryIgnoreHandler;
import com.jpexs.decompiler.flash.ApplicationInfo;
import com.jpexs.decompiler.flash.EventListener;
import com.jpexs.decompiler.flash.IdentifiersDeobfuscation;
import com.jpexs.decompiler.flash.SWF;
import com.jpexs.decompiler.flash.SWFBundle;
import com.jpexs.decompiler.flash.SWFCompression;
@@ -2715,7 +2716,7 @@ public class CommandLineArgumentParser {
pw.println("[as3]");
pw.println("ABCtagCount=" + swf.getAbcList().size());
pw.println("packsCount=" + swf.getAS3Packs().size());
String dc = swf.getDocumentClass();
String dc = IdentifiersDeobfuscation.printIdentifier(true, swf.getDocumentClass());
pw.println("documentClass=" + (dc == null ? "" : dc));
pw.println();
pw.flush();