Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/as3_cross_compile/src/Main.as
2021-02-24 19:55:59 +01:00

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()
{
}
}
}