WIP Safe strings handling

This commit is contained in:
Jindra Petřík
2025-07-25 10:49:33 +02:00
parent ffe9e4d506
commit 12ab8af322
139 changed files with 679 additions and 459 deletions

View File

@@ -127,7 +127,7 @@ public class AS3Generator {
for (Trait t : abc.instance_info.get(classId).instance_traits.traits) {
if (t instanceof TraitMethodGetterSetter) {
String name = t.getName(abc).getName(abc.constants, null, true, true);
String name = t.getName(abc).getName(abc, abc.constants, null, true, true);
String clsName = pack.getClassPath().className;
String lower = clsName.substring(0, 1).toLowerCase() + clsName.substring(1);
String identifier = swfAndIdentifierList[0][1];