trunk contents moved to root

This commit is contained in:
Jindra Petřík
2014-05-10 20:50:57 +02:00
parent 1b851e66a8
commit 199a4d0c2b
2296 changed files with 0 additions and 0 deletions

20
testdata/as3/classes/TestClass1.as vendored Normal file
View File

@@ -0,0 +1,20 @@
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;
}
}
}