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 Base<T extends core::Object, U extends core::Object> extends core
::Object { | 5 abstract class Base<T extends core::Object, U extends core::Object> extends core
::Object { |
6 constructor •() → void | 6 constructor •() → void |
7 ; | 7 ; |
8 abstract operator [](core::String s) → self::Base::T; | 8 operator [](core::String s) → self::Base::T |
9 abstract operator []=(core::String s, self::Base::U v) → void; | 9 ; |
| 10 operator []=(core::String s, self::Base::U v) → void |
| 11 ; |
| 12 abstract method getValue(core::String s) → self::Base::T; |
| 13 abstract method setValue(core::String s, self::Base::U v) → void; |
10 } | 14 } |
11 abstract class Test1 extends self::Base<core::int, core::int> { | 15 abstract class Test1 extends self::Base<core::int, core::int> { |
12 constructor •() → void | 16 constructor •() → void |
13 ; | 17 ; |
14 method test() → void | 18 method test() → void |
15 ; | 19 ; |
16 } | 20 } |
17 abstract class Test2 extends self::Base<core::int, core::num> { | 21 abstract class Test2 extends self::Base<core::int, core::num> { |
18 constructor •() → void | 22 constructor •() → void |
19 ; | 23 ; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 ; | 67 ; |
64 } | 68 } |
65 static method getInt() → core::int | 69 static method getInt() → core::int |
66 ; | 70 ; |
67 static method getNum() → core::num | 71 static method getNum() → core::num |
68 ; | 72 ; |
69 static method getDouble() → core::double | 73 static method getDouble() → core::double |
70 ; | 74 ; |
71 static method main() → dynamic | 75 static method main() → dynamic |
72 ; | 76 ; |
OLD | NEW |