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:
Jindra Petřík
2021-01-26 21:12:34 +01:00
parent 90bf2057fe
commit 98c2b1eba9
53 changed files with 1245 additions and 376 deletions

View File

@@ -24,6 +24,7 @@ package
TestDefaultNotLastGrouped;
TestDoWhile;
TestDoWhile2;
TestDup;
TestExpressions;
TestFinallyZeroJump;
TestFor;

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

View File

@@ -8,4 +8,4 @@ package tests
trace("hello");
}
}
}
}