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

Side by Side Diff: pkg/front_end/testcases/inference/infer_field_overrides_setter.dart.strong.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 set x(core::int value) → void;
10 }
11 class B extends core::Object {
12 constructor •() → void
13 : super core::Object::•()
14 ;
15 set x(core::int value) → void {}
16 }
17 class C extends self::A {
18 field core::int x = null;
19 constructor •() → void
20 : super self::A::•()
21 ;
22 }
23 class D extends self::B {
24 field core::int x = null;
25 constructor •() → void
26 : super self::B::•()
27 ;
28 }
29 class E extends core::Object implements self::A {
30 field core::int x = null;
31 constructor •() → void
32 : super core::Object::•()
33 ;
34 }
35 class F extends core::Object implements self::B {
36 field core::int x = null;
37 constructor •() → void
38 : super core::Object::•()
39 ;
40 }
41 abstract class Object&B = core::Object with self::B {
42 }
43 class G extends self::Object&B {
44 field core::int x = null;
45 constructor •() → void
46 : super core::Object::•()
47 ;
48 }
49 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698