mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-26 03:46:08 +00:00
52 lines
1001 B
ActionScript
52 lines
1001 B
ActionScript
package
|
|
{
|
|
import flash.display.MovieClip;
|
|
import flash.events.Event;
|
|
import tests.*;
|
|
|
|
/**
|
|
* ...
|
|
* @author JPEXS
|
|
*/
|
|
public class Main extends MovieClip
|
|
{
|
|
TestTryCatch;
|
|
TestTryCatchIfInTry;
|
|
TestTryCatchInIf;
|
|
TestTryCatchInIf2;
|
|
TestTryCatchInWhile;
|
|
TestTryCatchInWhile2;
|
|
TestTryCatchInWhile3;
|
|
TestTryCatchInWhile4;
|
|
TestTryCatchInWhile5;
|
|
TestTryCatchLoop;
|
|
TestTryCatchLoopBreak;
|
|
TestTryCatchLoopBreak2;
|
|
TestTryCatchLoopBreak3;
|
|
TestTryCatchLoopBreak4;
|
|
TestTryCatchLoopBreak5;
|
|
TestTryCatchLoopBreak6;
|
|
TestTryCatchReturn;
|
|
TestTryCatchExceptionUsage
|
|
TestTryCatchTry;
|
|
TestTryCatchWith;
|
|
TestTryFinally;
|
|
TestTryFinallyDirectReturnInFinally;
|
|
TestTryFinallyLoop;
|
|
TestTryFinallyLoopInFinally;
|
|
TestTryFinallyMultipleCatch;
|
|
TestTryFinallyNoCatch;
|
|
TestTryFinallyReturn;
|
|
TestTryFinallyReturnInFinally;
|
|
TestTryFinallyReturnNested;
|
|
TestTryFinallyReturnNested2;
|
|
TestTryFinallyReturnVoid;
|
|
|
|
public function Main()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} |