Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/as3_new/src/tests/TestIfInsteadSwitch.as
Jindra Petřík 5db66ae32b Fixed tests.
2025-09-30 21:39:32 +02:00

24 lines
360 B
ActionScript

package tests
{
public class TestIfInsteadSwitch
{
public function run():*
{
var a:int = 5;
if(a > 5)
{
if(a === 0)
{
trace("X");
}
}
if(a === 1)
{
return "A";
}
return "B";
}
}
}