Chromium Code Reviews

Unified Diff: pkg/front_end/testcases/inference_new/infer_instance_field_ref.dart.strong.expect

Issue 2981783002: Set 'isSyntheticDefault' for default constructors. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: pkg/front_end/testcases/inference_new/infer_instance_field_ref.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference_new/infer_instance_field_ref.dart.strong.expect b/pkg/front_end/testcases/inference_new/infer_instance_field_ref.dart.strong.expect
index e2e3748d92d508a481b5e988e87c3b69b1a55f11..6cb39002741a79c22542716e057e5fbdb0952504 100644
--- a/pkg/front_end/testcases/inference_new/infer_instance_field_ref.dart.strong.expect
+++ b/pkg/front_end/testcases/inference_new/infer_instance_field_ref.dart.strong.expect
@@ -4,23 +4,23 @@ import "dart:core" as core;
class A extends core::Object {
field self::B b = null;
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
}
class B extends core::Object {
field self::C c = null;
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
}
class C extends core::Object {
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
}
class D extends self::C {
- constructor •() → void
+ default constructor •() → void
: super self::C::•()
;
}

Powered by Google App Engine