mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-04 19:54:19 +00:00
37 lines
637 B
ActionScript
37 lines
637 B
ActionScript
package
|
|
{
|
|
import flash.display.MovieClip;
|
|
import flash.events.Event;
|
|
import tests.*;
|
|
|
|
/**
|
|
* ...
|
|
* @author JPEXS
|
|
*/
|
|
public class Main extends MovieClip
|
|
{
|
|
TestTryCatch;
|
|
TestTryCatchIfInTry;
|
|
TestTryCatchInWhile;
|
|
TestTryCatchInWhile2;
|
|
TestTryCatchLoop;
|
|
TestTryCatchExceptionUsage
|
|
TestTryFinally;
|
|
TestTryFinallyDirectReturnInFinally;
|
|
TestTryFinallyLoop;
|
|
TestTryFinallyLoopInFinally;
|
|
TestTryFinallyMultipleCatch;
|
|
TestTryFinallyNoCatch;
|
|
TestTryFinallyReturn;
|
|
TestTryFinallyReturnInFinally;
|
|
TestTryFinallyReturnNested;
|
|
TestTryFinallyReturnVoid;
|
|
|
|
public function Main()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} |