mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-23 12:05:32 +00:00
AS3 p-code more RAbcDasm like
- get/setlocal_x renamed to get/setlocalx - QName casing changed from Qname Better increment/decrement detection, chained assignments.
This commit is contained in:
@@ -24,6 +24,7 @@ package
|
||||
TestDefaultNotLastGrouped;
|
||||
TestDoWhile;
|
||||
TestDoWhile2;
|
||||
TestDup;
|
||||
TestExpressions;
|
||||
TestFinallyZeroJump;
|
||||
TestFor;
|
||||
|
||||
18
libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestDup.as
vendored
Normal file
18
libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestDup.as
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
package tests
|
||||
{
|
||||
public class TestDup
|
||||
{
|
||||
|
||||
public function run() : void
|
||||
{
|
||||
var a:Boolean;
|
||||
var b:Boolean;
|
||||
|
||||
if (a = b)
|
||||
{
|
||||
trace(a);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -8,4 +8,4 @@ package tests
|
||||
trace("hello");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user