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 default constructor •() → void |
7 ; | 7 ; |
8 operator [](core::String s) → self::Base::T | 8 operator [](core::String s) → self::Base::T |
9 ; | 9 ; |
10 operator []=(core::String s, self::Base::U v) → void | 10 operator []=(core::String s, self::Base::U v) → void |
11 ; | 11 ; |
12 abstract method getValue(core::String s) → self::Base::T; | 12 abstract method getValue(core::String s) → self::Base::T; |
13 abstract method setValue(core::String s, self::Base::U v) → void; | 13 abstract method setValue(core::String s, self::Base::U v) → void; |
14 } | 14 } |
15 abstract class Test1 extends self::Base<core::int, core::int> { | 15 abstract class Test1 extends self::Base<core::int, core::int> { |
16 constructor •() → void | 16 default constructor •() → void |
17 ; | 17 ; |
18 method test() → void | 18 method test() → void |
19 ; | 19 ; |
20 } | 20 } |
21 abstract class Test2 extends self::Base<core::int, core::num> { | 21 abstract class Test2 extends self::Base<core::int, core::num> { |
22 constructor •() → void | 22 default constructor •() → void |
23 ; | 23 ; |
24 method test() → void | 24 method test() → void |
25 ; | 25 ; |
26 } | 26 } |
27 abstract class Test3 extends self::Base<core::int, core::double> { | 27 abstract class Test3 extends self::Base<core::int, core::double> { |
28 constructor •() → void | 28 default constructor •() → void |
29 ; | 29 ; |
30 method test() → void | 30 method test() → void |
31 ; | 31 ; |
32 } | 32 } |
33 abstract class Test4 extends self::Base<core::num, core::int> { | 33 abstract class Test4 extends self::Base<core::num, core::int> { |
34 constructor •() → void | 34 default constructor •() → void |
35 ; | 35 ; |
36 method test() → void | 36 method test() → void |
37 ; | 37 ; |
38 } | 38 } |
39 abstract class Test5 extends self::Base<core::num, core::num> { | 39 abstract class Test5 extends self::Base<core::num, core::num> { |
40 constructor •() → void | 40 default constructor •() → void |
41 ; | 41 ; |
42 method test() → void | 42 method test() → void |
43 ; | 43 ; |
44 } | 44 } |
45 abstract class Test6 extends self::Base<core::num, core::double> { | 45 abstract class Test6 extends self::Base<core::num, core::double> { |
46 constructor •() → void | 46 default constructor •() → void |
47 ; | 47 ; |
48 method test() → void | 48 method test() → void |
49 ; | 49 ; |
50 } | 50 } |
51 abstract class Test7 extends self::Base<core::double, core::int> { | 51 abstract class Test7 extends self::Base<core::double, core::int> { |
52 constructor •() → void | 52 default constructor •() → void |
53 ; | 53 ; |
54 method test() → void | 54 method test() → void |
55 ; | 55 ; |
56 } | 56 } |
57 abstract class Test8 extends self::Base<core::double, core::num> { | 57 abstract class Test8 extends self::Base<core::double, core::num> { |
58 constructor •() → void | 58 default constructor •() → void |
59 ; | 59 ; |
60 method test() → void | 60 method test() → void |
61 ; | 61 ; |
62 } | 62 } |
63 abstract class Test9 extends self::Base<core::double, core::double> { | 63 abstract class Test9 extends self::Base<core::double, core::double> { |
64 constructor •() → void | 64 default constructor •() → void |
65 ; | 65 ; |
66 method test() → void | 66 method test() → void |
67 ; | 67 ; |
68 } | 68 } |
69 static method getInt() → core::int | 69 static method getInt() → core::int |
70 ; | 70 ; |
71 static method getNum() → core::num | 71 static method getNum() → core::num |
72 ; | 72 ; |
73 static method getDouble() → core::double | 73 static method getDouble() → core::double |
74 ; | 74 ; |
75 static method main() → dynamic | 75 static method main() → dynamic |
76 ; | 76 ; |
OLD | NEW |