| OLD | NEW |
| 1 library; | 1 library; |
| 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 class C<T extends core::Object> extends core::Object { | 5 class C<T extends core::Object> extends core::Object { |
| 6 constructor •() → void | 6 constructor •() → void |
| 7 : super core::Object::•() | 7 : super core::Object::•() |
| 8 ; | 8 ; |
| 9 method test() → dynamic { | 9 method test() → dynamic { |
| 10 self::C<dynamic>; | 10 self::C<dynamic>; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 self::use(let final dynamic #t124 = () → void in let final dynamic #t125 = #
t124.-(42) in invalid-expression); | 89 self::use(let final dynamic #t124 = () → void in let final dynamic #t125 = #
t124.-(42) in invalid-expression); |
| 90 } | 90 } |
| 91 } | 91 } |
| 92 static method use(dynamic x) → dynamic { | 92 static method use(dynamic x) → dynamic { |
| 93 if(x.==(new core::DateTime::now().millisecondsSinceEpoch)) | 93 if(x.==(new core::DateTime::now().millisecondsSinceEpoch)) |
| 94 throw "Shouldn't happen"; | 94 throw "Shouldn't happen"; |
| 95 } | 95 } |
| 96 static method main() → dynamic { | 96 static method main() → dynamic { |
| 97 new self::C::•<dynamic>().test(); | 97 new self::C::•<dynamic>().test(); |
| 98 } | 98 } |
| OLD | NEW |