mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 18:34:45 +00:00
Fixed AS3 - Resolving types on static protected namespaced properties
Fixed test data
This commit is contained in:
@@ -171,7 +171,7 @@ public final class AbcIndexing {
|
||||
}
|
||||
int k = abc.constants.getNamespace(propNsIndex).kind;
|
||||
if (k != Namespace.KIND_PACKAGE && propNsIndex != builtInIndex) {
|
||||
if (k == Namespace.KIND_PROTECTED) {
|
||||
if (k == Namespace.KIND_PROTECTED || k == Namespace.KIND_STATIC_PROTECTED) {
|
||||
setProtected(abc, propNsIndex);
|
||||
} else {
|
||||
setPrivate(abc, propNsIndex);
|
||||
|
||||
Reference in New Issue
Block a user