mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 08:40:49 +00:00
AS2 test data:
- added class for getter/setter testing - added class for vars/methods testing
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user