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

Unified Diff: pkg/front_end/testcases/inference/conflicts_can_happen.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. 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/inference/conflicts_can_happen.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/conflicts_can_happen.dart.strong.expect b/pkg/front_end/testcases/inference/conflicts_can_happen.dart.strong.expect
index cc56e19a9d1f53446cb250142a2a678135a6f12f..ece81ceb907c890859b8f967957cf61ce72c780a 100644
--- a/pkg/front_end/testcases/inference/conflicts_can_happen.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/conflicts_can_happen.dart.strong.expect
@@ -4,37 +4,37 @@ import "dart:core" as core;
class I1 extends core::Object {
field core::int x = null;
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
}
class I2 extends self::I1 {
field core::int y = null;
- constructor •() → void
+ default constructor •() → void
: super self::I1::•()
;
}
class A extends core::Object {
final field self::I1 a = null;
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
}
class B extends core::Object {
final field self::I2 a = null;
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
}
class C1 extends core::Object implements self::A, self::B {
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
get a() → dynamic
return null;
}
class C2 extends core::Object implements self::B, self::A {
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
get a() → dynamic

Powered by Google App Engine
This is Rietveld 408576698