Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestDup.as
Jindra Petřík 98c2b1eba9 AS3 p-code more RAbcDasm like
- get/setlocal_x renamed to get/setlocalx
- QName casing changed from Qname

Better increment/decrement detection, chained assignments.
2021-02-08 20:15:19 +01:00

18 lines
173 B
ActionScript

package tests
{
public class TestDup
{
public function run() : void
{
var a:Boolean;
var b:Boolean;
if (a = b)
{
trace(a);
}
}
}
}