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

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

Issue 2921443002: Implement type inference for PropertyGet. (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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/testcases/inference/propagate_inference_transitively2.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/propagate_inference_transitively2.dart.strong.expect b/pkg/front_end/testcases/inference/propagate_inference_transitively2.dart.strong.expect
index 37266d842b25a4f616b4ca14572d2d50fbfec727..07497951016fca4f152a2992f3eddbc9097e5bab 100644
--- a/pkg/front_end/testcases/inference/propagate_inference_transitively2.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/propagate_inference_transitively2.dart.strong.expect
@@ -28,7 +28,7 @@ class D extends core::Object {
}
static method main() → void {
self::D d1 = new self::D::•();
- core::print(d1.c.b.a.x);
+ core::print(d1.{self::D::c}.{self::C::b}.{self::B::a}.{self::A::x});
self::D d2 = new self::D::•();
- core::print(d2.c.b.a.x);
+ core::print(d2.{self::D::c}.{self::C::b}.{self::B::a}.{self::A::x});
}

Powered by Google App Engine
This is Rietveld 408576698