renamed new as3 test swfs to have as3 prefix and unique SWF name

This commit is contained in:
Jindra Petřík
2021-02-08 20:15:19 +01:00
parent 347648c77e
commit 26b51d2e95
191 changed files with 69 additions and 68 deletions
+37
View File
@@ -0,0 +1,37 @@
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()
{
}
}
}