OLD | NEW |
1 library test; | 1 library test; |
2 import self as self; | 2 import self as self; |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 | 4 |
5 class Test1 extends core::Object { | 5 class Test1 extends core::Object { |
6 field core::int prop; | 6 field core::int prop; |
7 constructor •() → void | 7 default constructor •() → void |
8 ; | 8 ; |
9 static method test(self::Test1 t) → void | 9 static method test(self::Test1 t) → void |
10 ; | 10 ; |
11 } | 11 } |
12 class Test2 extends core::Object { | 12 class Test2 extends core::Object { |
13 field core::num prop; | 13 field core::num prop; |
14 constructor •() → void | 14 default constructor •() → void |
15 ; | 15 ; |
16 static method test(self::Test2 t) → void | 16 static method test(self::Test2 t) → void |
17 ; | 17 ; |
18 } | 18 } |
19 class Test3 extends core::Object { | 19 class Test3 extends core::Object { |
20 field core::double prop; | 20 field core::double prop; |
21 constructor •() → void | 21 default constructor •() → void |
22 ; | 22 ; |
23 static method test3(self::Test3 t) → void | 23 static method test3(self::Test3 t) → void |
24 ; | 24 ; |
25 } | 25 } |
26 static method getInt() → core::int | 26 static method getInt() → core::int |
27 ; | 27 ; |
28 static method getNum() → core::num | 28 static method getNum() → core::num |
29 ; | 29 ; |
30 static method getDouble() → core::double | 30 static method getDouble() → core::double |
31 ; | 31 ; |
32 static method main() → dynamic | 32 static method main() → dynamic |
33 ; | 33 ; |
OLD | NEW |