Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/as3_new/src/tests/TestIncDec11.as
2025-08-03 10:10:17 +02:00

25 lines
466 B
ActionScript

package tests
{
public class TestIncDec11
{
public function run():*
{
var f:Function = function():void {};
var slot:int = 0;
trace("++slot with result");
trace(++slot);
trace("--slot with result");
trace(--slot);
trace("++slot no result");
++slot;
trace("--slot no result");
--slot;
}
}
}