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

Side by Side Diff: pkg/front_end/testcases/inference/infer_field_overrides_getter.dart.direct.expect

Issue 2938423003: Implement override-based inference of instance fields. (Closed)
Patch Set: Created 3 years, 6 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
(Empty)
1 library test;
2 import self as self;
3 import "dart:core" as core;
4
5 abstract class A extends core::Object {
6 constructor •() → void
7 : super core::Object::•()
8 ;
9 abstract get x() → core::int;
10 }
11 class B extends core::Object {
12 constructor •() → void
13 : super core::Object::•()
14 ;
15 get x() → core::int
16 return 0;
17 }
18 class C extends self::A {
19 field dynamic x = null;
20 constructor •() → void
21 : super self::A::•()
22 ;
23 }
24 class D extends self::B {
25 field dynamic x = null;
26 constructor •() → void
27 : super self::B::•()
28 ;
29 }
30 class E extends core::Object implements self::A {
31 field dynamic x = null;
32 constructor •() → void
33 : super core::Object::•()
34 ;
35 }
36 class F extends core::Object implements self::B {
37 field dynamic x = null;
38 constructor •() → void
39 : super core::Object::•()
40 ;
41 }
42 abstract class Object&B = core::Object with self::B {
43 }
44 class G extends self::Object&B {
45 field dynamic x = null;
46 constructor •() → void
47 : super core::Object::•()
48 ;
49 }
50 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698