Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1705)

Unified Diff: pkg/front_end/testcases/uninitialized_fields.dart.direct.expect

Issue 2976283002: Update expectations. (Closed)
Patch Set: Update compile.status. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {
« no previous file with comments | « pkg/front_end/testcases/statements.dart.direct.expect ('k') | tests/compiler/dart2js/kernel/visitor_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698