| 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 import "dart:math" as math; | 4 import "dart:math" as math; |
| 5 | 5 |
| 6 class C extends core::Object { | 6 class C extends core::Object { |
| 7 constructor •() → void | 7 default constructor •() → void |
| 8 : super core::Object::•() | 8 : super core::Object::•() |
| 9 ; | 9 ; |
| 10 method m<T extends core::num>(self::C::m::T x, self::C::m::T y) → self::C::m::
T | 10 method m<T extends core::num>(self::C::m::T x, self::C::m::T y) → self::C::m::
T |
| 11 return null; | 11 return null; |
| 12 } | 12 } |
| 13 static method main() → dynamic { | 13 static method main() → dynamic { |
| 14 self::takeIII(math::max); | 14 self::takeIII(math::max); |
| 15 self::takeDDD(math::max); | 15 self::takeDDD(math::max); |
| 16 self::takeNNN(math::max); | 16 self::takeNNN(math::max); |
| 17 self::takeIDN(math::max); | 17 self::takeIDN(math::max); |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 static method takeIDN((core::double, core::int) → core::num fn) → void {} | 61 static method takeIDN((core::double, core::int) → core::num fn) → void {} |
| 62 static method takeDIN((core::int, core::double) → core::num fn) → void {} | 62 static method takeDIN((core::int, core::double) → core::num fn) → void {} |
| 63 static method takeIIN((core::int, core::int) → core::num fn) → void {} | 63 static method takeIIN((core::int, core::int) → core::num fn) → void {} |
| 64 static method takeDDN((core::double, core::double) → core::num fn) → void {} | 64 static method takeDDN((core::double, core::double) → core::num fn) → void {} |
| 65 static method takeNNN((core::num, core::num) → core::num fn) → void {} | 65 static method takeNNN((core::num, core::num) → core::num fn) → void {} |
| 66 static method takeOON((core::Object, core::Object) → core::num fn) → void {} | 66 static method takeOON((core::Object, core::Object) → core::num fn) → void {} |
| 67 static method takeOOO((core::Object, core::Object) → core::num fn) → void {} | 67 static method takeOOO((core::Object, core::Object) → core::num fn) → void {} |
| 68 static method takeOOI((core::Object, core::Object) → core::int fn) → void {} | 68 static method takeOOI((core::Object, core::Object) → core::int fn) → void {} |
| 69 static method takeIIO((core::int, core::int) → core::Object fn) → void {} | 69 static method takeIIO((core::int, core::int) → core::Object fn) → void {} |
| 70 static method takeDDO((core::double, core::double) → core::Object fn) → void {} | 70 static method takeDDO((core::double, core::double) → core::Object fn) → void {} |
| OLD | NEW |