AS2 test data:

- added class for getter/setter testing
- added class for vars/methods testing
This commit is contained in:
Jindra Petřík
2018-01-21 08:16:09 +01:00
parent 4a64670494
commit 16f6fa329c
5 changed files with 70 additions and 0 deletions
@@ -0,0 +1,18 @@
class com.jpexs.TestVarsMethods {
public var instVar:Number = 1;
public static var statVar:Number = 2;
public function TestVarsMethods(){
trace("constructor");
}
public function instMethod() {
trace("instance method");
}
public static function statMethod() {
trace("static method");
}
}