mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 15:20:47 +00:00
renamed new as3 test swfs to have as3 prefix and unique SWF name
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestCatchFinally
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var a:* = 5;
|
||||
try
|
||||
{
|
||||
a = 9;
|
||||
trace("intry");
|
||||
}
|
||||
catch (e:*)
|
||||
{
|
||||
trace("incatch");
|
||||
}
|
||||
finally
|
||||
{
|
||||
trace("infinally");
|
||||
}
|
||||
trace("after");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user