Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/as3_new/src/tests/TestTryIf.as
2021-02-08 20:15:19 +01:00

24 lines
268 B
ActionScript

package tests
{
public class TestTryIf
{
public function run():*
{
var a:int = Math.random();
try
{
if (a > 5 && a < 50)
{
trace("in limits");
}
trace("next");
}
catch (e:Error)
{
trace("in catch");
}
}
}
}