Fixed AS3 deobfuscator on &&, || operators

This commit is contained in:
Jindra Petřík
2021-02-06 09:43:03 +01:00
parent 619ef52790
commit ae119b7201
6 changed files with 40 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ package
TestContinueLevels;
TestDecl2;
TestDeclarations;
TestDeobfuscation;
TestDefaultNotLastGrouped;
TestDotParent;
TestDoWhile;

View File

@@ -0,0 +1,18 @@
package tests
{
public class TestDeobfuscation
{
public function run():*
{
var r:int = Math.random();
var f:Boolean = false;
if(r > 5 || f)
{
return "okay";
}
return "after";
}
}
}