mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 05:04:57 +00:00
Fixed: AS3 decompilation: increment/decrement on properties
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -16,7 +16,7 @@
|
||||
</define>
|
||||
<define append="true">
|
||||
<name>CONFIG::timeStamp</name>
|
||||
<value>'16.02.2021'</value>
|
||||
<value>'21.02.2021'</value>
|
||||
</define>
|
||||
<define append="true">
|
||||
<name>CONFIG::air</name>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
</define>
|
||||
<define append="true">
|
||||
<name>CONFIG::timeStamp</name>
|
||||
<value>'16.02.2021'</value>
|
||||
<value>'21.02.2021'</value>
|
||||
</define>
|
||||
<define append="true">
|
||||
<name>CONFIG::air</name>
|
||||
|
||||
@@ -3,6 +3,9 @@ package tests
|
||||
|
||||
public class TestIncDec
|
||||
{
|
||||
|
||||
private var attrx:int = 0;
|
||||
|
||||
public function run():*
|
||||
{
|
||||
var a:* = 5;
|
||||
@@ -39,6 +42,19 @@ package tests
|
||||
chars[index++] = 5;
|
||||
trace("arr[++e]");
|
||||
chars[++index] = 5;
|
||||
trace("attr++");
|
||||
trace(attrx++);
|
||||
attrx++;
|
||||
trace("attr--");
|
||||
trace(attrx--);
|
||||
attrx--;
|
||||
trace("++attr");
|
||||
trace(++attrx);
|
||||
++attrx;
|
||||
trace("--attr");
|
||||
trace(--attrx);
|
||||
--attrx;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user