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 abstract class A extends core::Object { | 5 abstract class A extends core::Object { |
6 constructor •() → void | 6 default constructor •() → void |
7 ; | 7 ; |
8 static get x() → core::int | 8 static get x() → core::int |
9 ; | 9 ; |
10 } | 10 } |
11 class B extends self::A { | 11 class B extends self::A { |
12 static field dynamic x; | 12 static field dynamic x; |
13 constructor •() → void | 13 default constructor •() → void |
14 ; | 14 ; |
15 } | 15 } |
16 class C extends self::A { | 16 class C extends self::A { |
17 static field dynamic x; | 17 static field dynamic x; |
18 constructor •() → void | 18 default constructor •() → void |
19 ; | 19 ; |
20 } | 20 } |
21 static method f() → dynamic | 21 static method f() → dynamic |
22 ; | 22 ; |
23 static method main() → dynamic | 23 static method main() → dynamic |
24 ; | 24 ; |
OLD | NEW |