mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-16 18:02:05 +00:00
22 lines
288 B
ActionScript
22 lines
288 B
ActionScript
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;
|
|
} |