mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-06 04:56:19 +00:00
28 lines
332 B
ActionScript
28 lines
332 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestFinallyZeroJump
|
|
{
|
|
public function run(param1:String) : String
|
|
{
|
|
var str:String = param1;
|
|
try
|
|
{
|
|
}
|
|
catch (e:Error)
|
|
{
|
|
trace("error is :" + e.message);
|
|
}
|
|
finally
|
|
{
|
|
trace("hi ");
|
|
if (5 == 4)
|
|
{
|
|
return str;
|
|
}
|
|
return "hu" + str;
|
|
}
|
|
}
|
|
}
|
|
}
|