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

Unified Diff: pkg/front_end/testcases/inference_new/property_get_toplevel.dart.strong.expect

Issue 2942153002: Enable top level inference of instance property gets/sets. (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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/testcases/inference_new/property_get_toplevel.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/property_get_toplevel.dart.strong.expect b/pkg/front_end/testcases/inference_new/property_get_toplevel.dart.strong.expect
similarity index 64%
copy from pkg/front_end/testcases/inference/property_get_toplevel.dart.strong.expect
copy to pkg/front_end/testcases/inference_new/property_get_toplevel.dart.strong.expect
index 3cd111ac8748e149dcb09e6d40d6de006eb82f15..05da2321b975fe605ee02d1921fcc554fd46c82c 100644
--- a/pkg/front_end/testcases/inference/property_get_toplevel.dart.strong.expect
+++ b/pkg/front_end/testcases/inference_new/property_get_toplevel.dart.strong.expect
@@ -13,10 +13,10 @@ class C extends core::Object {
return 0;
}
static field self::C c = new self::C::•();
-static field dynamic field_ref = self::c.{self::C::field};
-static field dynamic getter_ref = self::c.{self::C::getter};
+static field core::int field_ref = self::c.{self::C::field};
+static field core::int getter_ref = self::c.{self::C::getter};
static field () → core::int function_ref = self::c.{self::C::function};
-static field dynamic field_ref_list = <core::int>[self::c.{self::C::field}];
-static field dynamic getter_ref_list = <core::int>[self::c.{self::C::getter}];
+static field core::List<core::int> field_ref_list = <core::int>[self::c.{self::C::field}];
+static field core::List<core::int> getter_ref_list = <core::int>[self::c.{self::C::getter}];
static field core::List<() → core::int> function_ref_list = <() → core::int>[self::c.{self::C::function}];
static method main() → dynamic {}

Powered by Google App Engine
This is Rietveld 408576698