| Index: pkg/front_end/testcases/uninitialized_fields.dart.direct.expect
|
| diff --git a/pkg/front_end/testcases/uninitialized_fields.dart.direct.expect b/pkg/front_end/testcases/uninitialized_fields.dart.direct.expect
|
| index c4b90446c9977835fb664e6c634704b4325b130b..f18927f5b8be06bd86bb8b64704399f3a10db8b8 100644
|
| --- a/pkg/front_end/testcases/uninitialized_fields.dart.direct.expect
|
| +++ b/pkg/front_end/testcases/uninitialized_fields.dart.direct.expect
|
| @@ -4,17 +4,17 @@ import "dart:core" as core;
|
|
|
| class Uninitialized extends core::Object {
|
| field core::int x = null;
|
| - constructor •() → void
|
| + default constructor •() → void
|
| : super core::Object::•()
|
| ;
|
| }
|
| class PartiallyInitialized extends core::Object {
|
| - field core::int x = null;
|
| + field core::int x;
|
| constructor •(core::int x) → void
|
| : self::PartiallyInitialized::x = x, super core::Object::•()
|
| ;
|
| constructor noInitializer() → void
|
| - : super core::Object::•()
|
| + : self::PartiallyInitialized::x = null, super core::Object::•()
|
| ;
|
| }
|
| class Initialized extends core::Object {
|
|
|