mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 11:44:36 +00:00
26 lines
266 B
ActionScript
26 lines
266 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestCatchFinally
|
|
{
|
|
public function run():*
|
|
{
|
|
var a:* = 5;
|
|
try
|
|
{
|
|
a = 9;
|
|
trace("intry");
|
|
}
|
|
catch (e:*)
|
|
{
|
|
trace("incatch");
|
|
}
|
|
finally
|
|
{
|
|
trace("infinally");
|
|
}
|
|
trace("after");
|
|
}
|
|
}
|
|
}
|