mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 04:01:28 +00:00
20 lines
312 B
ActionScript
20 lines
312 B
ActionScript
package tests
|
|
{
|
|
public class TestNamedAnonFunctions
|
|
{
|
|
public function run() : *
|
|
{
|
|
var test:* = new function testFunc(param1:*, param2:int, param3:Array):Boolean
|
|
{
|
|
return (param1 as TestClass2).attrib1 == 5;
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
class TestClass2
|
|
{
|
|
public var attrib1:int;
|
|
}
|
|
|