Fixed #1692 Properly distinguish obfuscated names vs namespace suffixes and attributes

This commit is contained in:
Jindra Petřík
2022-11-17 15:34:30 +01:00
parent 25cebd9e6b
commit 0227293bd0
21 changed files with 218 additions and 120 deletions

View File

@@ -52,7 +52,7 @@ public class ActionScript3OptinalParametersTest extends ActionScript3DecompileTe
if (t instanceof DoABC2Tag) {
tag = (DoABC2Tag) t;
abc = tag.getABC();
clsIndex = abc.findClassByName(new DottedChain(new String[]{"tests", className}, ""));
clsIndex = abc.findClassByName(new DottedChain(new String[]{"tests", className}));
if (clsIndex > -1) {
break;
}