Fixed #1936 AS3 Direct editation - slots increment, decrement

This commit is contained in:
Jindra Petřík
2023-01-14 14:39:06 +01:00
parent d55f9dcf3e
commit 0aaef75927
9 changed files with 60 additions and 2 deletions

View File

@@ -94,6 +94,7 @@ package
TestProperty;
TestRegExp;
TestRest;
TestSlots;
TestStrictEquals;
TestStringConcat;
TestStrings;

View 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);
}
}
}