Added: AS3 - code completion (properties and methods)

This commit is contained in:
Jindra Petřík
2025-06-14 20:59:38 +02:00
parent 209f8ca593
commit 24e34ca272
12 changed files with 539 additions and 43 deletions
@@ -1139,6 +1139,11 @@ public class ABCPanel extends JPanel implements ItemListener, SearchListener<Scr
return typeToPath(it);
}
@Override
public List<String> getClassTraitNames(Path className, boolean getStatic, boolean getInstance, boolean getInheritance) {
return new ArrayList<>(abc.getSwf().getAbcIndex().getClassTraitNames(new TypeItem(className.toString()), abc, decompiledTextArea.getScriptIndex(), getStatic, getInstance, getInheritance));
}
});
decompiledTextArea.addScriptListener(new Runnable() {
@Override