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

Side by Side Diff: pkg/front_end/testcases/inference/infer_field_override_multiple.dart.outline.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 unified diff | Download patch
OLDNEW
1 library test; 1 library test;
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 abstract class A extends core::Object { 5 abstract class A extends core::Object {
6 constructor •() → void 6 default constructor •() → void
7 ; 7 ;
8 abstract get x() → core::int; 8 abstract get x() → core::int;
9 } 9 }
10 abstract class B extends core::Object { 10 abstract class B extends core::Object {
11 constructor •() → void 11 default constructor •() → void
12 ; 12 ;
13 abstract get x() → core::int; 13 abstract get x() → core::int;
14 } 14 }
15 abstract class C extends core::Object { 15 abstract class C extends core::Object {
16 constructor •() → void 16 default constructor •() → void
17 ; 17 ;
18 abstract get x() → core::num; 18 abstract get x() → core::num;
19 } 19 }
20 abstract class D extends core::Object { 20 abstract class D extends core::Object {
21 constructor •() → void 21 default constructor •() → void
22 ; 22 ;
23 abstract get x() → core::double; 23 abstract get x() → core::double;
24 } 24 }
25 class E extends self::A implements self::B { 25 class E extends self::A implements self::B {
26 field dynamic x; 26 field dynamic x;
27 constructor •() → void 27 default constructor •() → void
28 ; 28 ;
29 } 29 }
30 class F extends self::A implements self::C { 30 class F extends self::A implements self::C {
31 field dynamic x; 31 field dynamic x;
32 constructor •() → void 32 default constructor •() → void
33 ; 33 ;
34 } 34 }
35 class G extends self::A implements self::D { 35 class G extends self::A implements self::D {
36 field dynamic x; 36 field dynamic x;
37 constructor •() → void 37 default constructor •() → void
38 ; 38 ;
39 } 39 }
40 class H extends self::C implements self::D { 40 class H extends self::C implements self::D {
41 field dynamic x; 41 field dynamic x;
42 constructor •() → void 42 default constructor •() → void
43 ; 43 ;
44 } 44 }
45 static method main() → dynamic 45 static method main() → dynamic
46 ; 46 ;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698