Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/as3/classes/TestClass1.as
Jindra Petřík 04922aaf69 Separated FFDec core library and the rest (GUI).
FFDec Library is now LGPLv3, others stay GPLv3.
Version changed to 3.0.0 for FFDec, 1.0.0 for FFDec Library.
2014-08-24 17:55:42 +02:00

20 lines
258 B
ActionScript

package classes
{
public dynamic class TestClass1
{
public var attrib:int = 5;
public var sons:Array;
public function testHello()
{
trace("hello2");
}
public function method(i:int):int
{
trace("method");
return 7;
}
}
}