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

Side by Side Diff: pkg/front_end/testcases/inference/conflicts_can_happen.dart.strong.expect

Issue 2865623003: Implement type inference of constructor invocations in Fasta. (Closed)
Patch Set: Created 3 years, 7 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 class I1 extends core::Object {
6 field core::int x = null;
7 constructor •() → void
8 : super core::Object::•()
9 ;
10 }
11 class I2 extends self::I1 {
12 field core::int y = null;
13 constructor •() → void
14 : super self::I1::•()
15 ;
16 }
17 class A extends core::Object {
18 final field self::I1 a = null;
19 constructor •() → void
20 : super core::Object::•()
21 ;
22 }
23 class B extends core::Object {
24 final field self::I2 a = null;
25 constructor •() → void
26 : super core::Object::•()
27 ;
28 }
29 class C1 extends core::Object implements self::A, self::B {
30 constructor •() → void
31 : super core::Object::•()
32 ;
33 get a() → dynamic
34 return null;
35 }
36 class C2 extends core::Object implements self::B, self::A {
37 constructor •() → void
38 : super core::Object::•()
39 ;
40 get a() → dynamic
41 return null;
42 }
43 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698