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