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 C extends core::Object { | 5 abstract class C extends core::Object { |
6 constructor •() → void | 6 default constructor •() → void |
7 ; | 7 ; |
8 } | 8 } |
9 abstract class D<T extends core::Object> extends core::Object { | 9 abstract class D<T extends core::Object> extends core::Object { |
10 constructor •(self::D::T t) → void | 10 constructor •(self::D::T t) → void |
11 ; | 11 ; |
12 } | 12 } |
13 static method test() → void | 13 static method test() → void |
14 ; | 14 ; |
15 static method main() → dynamic | 15 static method main() → dynamic |
16 ; | 16 ; |
OLD | NEW |