OLD | NEW |
(Empty) | |
| 1 library; |
| 2 import self as self; |
| 3 import "dart:core" as core; |
| 4 |
| 5 class Uninitialized extends core::Object { |
| 6 field core::int x; |
| 7 constructor •() → void |
| 8 ; |
| 9 } |
| 10 class PartiallyInitialized extends core::Object { |
| 11 field core::int x; |
| 12 constructor •(dynamic x) → void |
| 13 ; |
| 14 constructor noInitializer() → void |
| 15 ; |
| 16 } |
| 17 class Initialized extends core::Object { |
| 18 field core::int x; |
| 19 constructor •(dynamic x) → void |
| 20 ; |
| 21 } |
| 22 class Forwarding extends core::Object { |
| 23 field core::int x; |
| 24 constructor initialize(dynamic x) → void |
| 25 ; |
| 26 constructor •(core::int arg) → void |
| 27 ; |
| 28 } |
| 29 static field core::int uninitializedTopLevel; |
| 30 static field core::int initializedTopLevel; |
| 31 static method main() → dynamic |
| 32 ; |
OLD | NEW |