mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-07 16:16:18 +00:00
Fixed #1936 AS3 Direct editation - slots increment, decrement
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -94,6 +94,7 @@ package
|
||||
TestProperty;
|
||||
TestRegExp;
|
||||
TestRest;
|
||||
TestSlots;
|
||||
TestStrictEquals;
|
||||
TestStringConcat;
|
||||
TestStrings;
|
||||
|
||||
20
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestSlots.as
vendored
Normal file
20
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestSlots.as
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestSlots
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var i:int = 1;
|
||||
var f = function():void
|
||||
{
|
||||
trace("hello");
|
||||
};
|
||||
i = 0;
|
||||
trace(i++);
|
||||
trace(i--);
|
||||
trace(++i);
|
||||
trace(--i);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user