-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathAltClass.hx
47 lines (24 loc) · 1.08 KB
/
AltClass.hx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package test.script;
import test.script.InterpretedGroup.Class2;
class AltClass {
public function new() {
} //new
public static function interpretedGroupClass1IsClass1() {
return new test.script.InterpretedGroup.Class1().isClass1();
} //interpretedGroupClass1IsClass1
public static function interpretedGroupClass1IsClass2() {
return new test.script.InterpretedGroup.Class1().isClass2();
} //interpretedGroupClass1IsClass2
public static function interpretedGroupClass2IsClass1() {
return new Class2().isClass1();
} //interpretedGroupClass2IsClass1
public static function interpretedGroupClass2IsClass2() {
return new Class2().isClass2();
} //interpretedGroupClass2IsClass2
public static function interpretedGroupClass1StaticMethod1() {
return test.script.InterpretedGroup.Class1.staticMethod1();
} //interpretedGroupClass1StaticMethod1
public static function interpretedGroupClass2StaticMethod2() {
return Class2.staticMethod2();
} //interpretedGroupClass2StaticMethod2
} //AltClass