mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-07 07:46:28 +00:00
Fixed AS3 - Resolving types on static protected namespaced properties
Fixed test data
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -49,8 +49,11 @@ package tests
|
||||
s = v.join("x");
|
||||
i = int(v.join("x"));
|
||||
|
||||
i = int(prot);
|
||||
s = prot;
|
||||
i = prot;
|
||||
s = String(prot);
|
||||
|
||||
i = sprot;
|
||||
s = String(sprot);
|
||||
|
||||
s = String(getTimer());
|
||||
|
||||
|
||||
@@ -3,6 +3,8 @@ package tests_classes
|
||||
|
||||
public class TestConvertParent
|
||||
{
|
||||
protected var prot:String = "5";
|
||||
}
|
||||
protected var prot:int = 5;
|
||||
|
||||
protected static var sprot:int = 6;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,8 +8,6 @@ package tests_classes
|
||||
internal var attr_inst_internal:int = 3;
|
||||
protected var attr_inst_protected:int = 4;
|
||||
|
||||
explicit var attr_exp:int = 9;
|
||||
|
||||
private static var attr_stat_private:int = 5;
|
||||
public static var attr_stat_public:int = 6;
|
||||
internal static var attr_stat_internal:int = 7;
|
||||
|
||||
Reference in New Issue
Block a user