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

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

Issue 2919623002: Implement type inference for PropertySet. (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/constructors_infer_from_arguments_factory.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/constructors_infer_from_arguments_factory.dart.strong.expect b/pkg/front_end/testcases/inference/constructors_infer_from_arguments_factory.dart.strong.expect
index 3c0985b3a40e66b1e533bcafc691ea11ef97a571..b16c64c7ebf6d9942f37dfa78ee1732af82cc68f 100644
--- a/pkg/front_end/testcases/inference/constructors_infer_from_arguments_factory.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/constructors_infer_from_arguments_factory.dart.strong.expect
@@ -9,11 +9,11 @@ class C<T extends core::Object> extends core::Object {
;
static factory •<T extends core::Object>(self::C::•::T t) → dynamic {
self::C<self::C::•::T> x = new self::C::_<self::C::•::T>();
- x.t = t;
+ x.{self::C::t} = t;
return x;
}
}
static method main() → dynamic {
self::C<core::int> x = self::C::•<core::int>(42);
- x.t = "hello";
+ x.{self::C::t} = "hello";
}

Powered by Google App Engine
This is Rietveld 408576698