mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 09:00:46 +00:00
26 lines
269 B
ActionScript
26 lines
269 B
ActionScript
package tests
|
|
{
|
|
/**
|
|
* ...
|
|
* @author JPEXS
|
|
*/
|
|
public class TestTryFinallyNoCatch
|
|
{
|
|
|
|
public function run() : void
|
|
{
|
|
trace("before try");
|
|
try
|
|
{
|
|
trace("in try");
|
|
}
|
|
finally
|
|
{
|
|
trace("in finally");
|
|
}
|
|
trace("after");
|
|
}
|
|
|
|
}
|
|
|
|
} |