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

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

Issue 2883533002: Update expectations files to get more strong mode inference tests to pass. (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
« no previous file with comments | « pkg/front_end/testcases/inference/propagate_inference_transitively.dart.strong.expect ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 library test;
2 import self as self;
3 import "dart:core" as core;
4
5 class A extends core::Object {
6 field core::int x = 42;
7 constructor •() → void
8 : super core::Object::•()
9 ;
10 }
11 class B extends core::Object {
12 field self::A a = new self::A::•();
13 constructor •() → void
14 : super core::Object::•()
15 ;
16 }
17 class C extends core::Object {
18 field self::B b = new self::B::•();
19 constructor •() → void
20 : super core::Object::•()
21 ;
22 }
23 class D extends core::Object {
24 field self::C c = new self::C::•();
25 constructor •() → void
26 : super core::Object::•()
27 ;
28 }
29 static method main() → void {
30 self::D d1 = new self::D::•();
31 core::print(d1.c.b.a.x);
32 self::D d2 = new self::D::•();
33 core::print(d2.c.b.a.x);
34 }
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/inference/propagate_inference_transitively.dart.strong.expect ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698