mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 10:35:13 +00:00
AS3 test methods separated to classes, Fixed AS3: get/set slot for global scope
This commit is contained in:
13
libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestComplexExpressions.as
vendored
Normal file
13
libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestComplexExpressions.as
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestComplexExpressions
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var i:int = 0;
|
||||
var j:int = 0;
|
||||
j = i = i + (i = i + i++);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user