Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/as3_new/src/tests/TestGotos4.as

28 lines
301 B
ActionScript

package tests
{
public class TestGotos4
{
public function run() : void
{
var a:int = 5;
if(a > 3)
{
if(a < 7)
{
try
{
trace("A");
}
catch(error:Error)
{
}
trace("B");
}
}
trace("return");
}
}
}