Chromium Code Reviews| 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 Uninitialized extends core::Object { | 5 class Uninitialized extends core::Object { |
| 6 field core::int x; | 6 field core::int x; |
| 7 constructor •() → void | 7 default constructor •() → void |
|
Johnni Winther
2017/07/14 09:22:02
Why isn't this change also in the .direct.expect f
ahe
2017/07/14 09:42:26
Same explanation.
| |
| 8 ; | 8 ; |
| 9 } | 9 } |
| 10 class PartiallyInitialized extends core::Object { | 10 class PartiallyInitialized extends core::Object { |
| 11 field core::int x; | 11 field core::int x; |
| 12 constructor •(core::int x) → void | 12 constructor •(core::int x) → void |
| 13 ; | 13 ; |
| 14 constructor noInitializer() → void | 14 constructor noInitializer() → void |
| 15 ; | 15 ; |
| 16 } | 16 } |
| 17 class Initialized extends core::Object { | 17 class Initialized extends core::Object { |
| 18 field core::int x; | 18 field core::int x; |
| 19 constructor •(core::int x) → void | 19 constructor •(core::int x) → void |
| 20 ; | 20 ; |
| 21 } | 21 } |
| 22 class Forwarding extends core::Object { | 22 class Forwarding extends core::Object { |
| 23 field core::int x; | 23 field core::int x; |
| 24 constructor initialize(core::int x) → void | 24 constructor initialize(core::int x) → void |
| 25 ; | 25 ; |
| 26 constructor •(core::int arg) → void | 26 constructor •(core::int arg) → void |
| 27 ; | 27 ; |
| 28 } | 28 } |
| 29 static field core::int uninitializedTopLevel; | 29 static field core::int uninitializedTopLevel; |
| 30 static field core::int initializedTopLevel; | 30 static field core::int initializedTopLevel; |
| 31 static method main() → dynamic | 31 static method main() → dynamic |
| 32 ; | 32 ; |
| OLD | NEW |