mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-14 18:08:52 +00:00
28 lines
301 B
ActionScript
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");
|
|
}
|
|
|
|
}
|
|
|
|
} |