mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-08 10:48:12 +00:00
test: as1/2 maintain push order
This commit is contained in:
BIN
libsrc/ffdec_lib/testdata/as2/as2.swf
vendored
BIN
libsrc/ffdec_lib/testdata/as2/as2.swf
vendored
Binary file not shown.
@@ -10,6 +10,7 @@ class com.jpexs.flash.test.TestLoader {
|
||||
new com.jpexs.flash.test.testcases.TestSuper2SetterGetter();
|
||||
new com.jpexs.flash.test.testcases.TestVarsMethods();
|
||||
new com.jpexs.flash.test.testcases.TestMaintainOrder();
|
||||
new com.jpexs.flash.test.testcases.TestReturnInConstructor();
|
||||
new com.jpexs.flash.test.testcases.TestReturnInConstructor();
|
||||
new com.jpexs.flash.test.testcases.TestUnpopped();
|
||||
}
|
||||
}
|
||||
13
libsrc/ffdec_lib/testdata/as2/com/jpexs/flash/test/testcases/TestUnpopped.as
vendored
Normal file
13
libsrc/ffdec_lib/testdata/as2/com/jpexs/flash/test/testcases/TestUnpopped.as
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
class com.jpexs.flash.test.testcases.TestUnpopped {
|
||||
|
||||
public var a;
|
||||
public var c = true;
|
||||
|
||||
public function run() {
|
||||
a;
|
||||
trace("b");
|
||||
if (c) {
|
||||
trace("c");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user