mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 10:36:08 +00:00
21 lines
365 B
ActionScript
21 lines
365 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestSlots2
|
|
{
|
|
public function run():*
|
|
{
|
|
var f:Function = function(): void {
|
|
var n:int = 0;
|
|
try
|
|
{
|
|
trace("intry");
|
|
}
|
|
catch(e:Error)
|
|
{
|
|
n = 1;
|
|
}
|
|
};
|
|
}
|
|
}
|
|
} |