mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-24 19:24:34 +00:00
Fixed: Dot parent operator not detected in some cases
This commit is contained in:
22
libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestDotParent.as
vendored
Normal file
22
libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestDotParent.as
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestDotParent
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var d:* = new TestClass1();
|
||||
var k:* = null;
|
||||
|
||||
k.(d.attrib++, 0);
|
||||
trace("between");
|
||||
var g:* = k.(d.attrib++, 0);
|
||||
trace("end");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class TestClass1
|
||||
{
|
||||
public var attrib:int = 5;
|
||||
}
|
||||
Reference in New Issue
Block a user