mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-09 02:38:57 +00:00
19 lines
228 B
ActionScript
19 lines
228 B
ActionScript
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";
|
|
}
|
|
}
|
|
}
|