| 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 Foo extends core::Object { | 5 class Foo extends core::Object { |
| 6 static const field dynamic staticConstant; | 6 static const field dynamic staticConstant; |
| 7 static field dynamic staticField; | 7 static field dynamic staticField; |
| 8 constructor •() → void | 8 default constructor •() → void |
| 9 ; | 9 ; |
| 10 static method staticFunction() → dynamic | 10 static method staticFunction() → dynamic |
| 11 ; | 11 ; |
| 12 static get staticGetter() → dynamic | 12 static get staticGetter() → dynamic |
| 13 ; | 13 ; |
| 14 static set staticSetter(dynamic _) → dynamic | 14 static set staticSetter(dynamic _) → dynamic |
| 15 ; | 15 ; |
| 16 } | 16 } |
| 17 static method use(dynamic x) → dynamic | 17 static method use(dynamic x) → dynamic |
| 18 ; | 18 ; |
| 19 static method main() → dynamic | 19 static method main() → dynamic |
| 20 ; | 20 ; |
| OLD | NEW |