Adding class with obfuscated identifier fix.

Obfuscated class/packages ordering fix.
This commit is contained in:
Jindra Petřík
2025-07-27 12:38:08 +02:00
parent da140c09b8
commit c87dc16ae3
9 changed files with 112 additions and 21 deletions

View File

@@ -256,12 +256,13 @@ public class Helper {
/**
* Unescape export name
* @param swf SWF
* @param s Input string
* @return Unescaped string
*/
public static String unescapeExportname(String s) {
public static String unescapeExportname(SWF swf, String s) {
if (s.startsWith("__Packages.")) {
return DottedChain.parsePrintable(s).toRawString();
return DottedChain.parsePrintable(swf, s).toRawString();
}
return unescapePCodeString(s);
}