mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-08-02 14:41:23 +00:00
Fixed #1888 Properly resolve static vs nonstatic properties
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -5,6 +5,10 @@ package tests
|
||||
{
|
||||
private var n:int = 1;
|
||||
private var ns:String = "b";
|
||||
|
||||
public static var TEST:String = "Hello";
|
||||
|
||||
public var TEST:int = 5;
|
||||
|
||||
public function run():void
|
||||
{
|
||||
@@ -16,6 +20,9 @@ package tests
|
||||
|
||||
s = String((i == 4) ? "" : i);
|
||||
s = (i == 4) ? "" : String(i);
|
||||
|
||||
s = TestConvert.TEST;
|
||||
i = this.TEST;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user