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

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

Issue 2938423003: Implement override-based inference of instance fields. (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/infer_field_override_with_substitution.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/infer_field_override_with_substitution.dart.strong.expect b/pkg/front_end/testcases/inference/infer_field_override_with_substitution.dart.strong.expect
new file mode 100644
index 0000000000000000000000000000000000000000..8a200d7d40d99d930399cdd7307fa71ae0a33a96
--- /dev/null
+++ b/pkg/front_end/testcases/inference/infer_field_override_with_substitution.dart.strong.expect
@@ -0,0 +1,21 @@
+library test;
+import self as self;
+import "dart:core" as core;
+
+abstract class A<T extends core::Object> extends core::Object {
+ field core::List<self::A::T> z = null;
+ constructor •() → void
+ : super core::Object::•()
+ ;
+ abstract get x() → core::List<self::A::T>;
+ abstract set y(core::List<self::A::T> value) → void;
+}
+class B extends self::A<core::int> {
+ field core::List<core::int> x = null;
+ field core::List<core::int> y = null;
+ field core::List<core::int> z = null;
+ constructor •() → void
+ : super self::A::•()
+ ;
+}
+static method main() → dynamic {}

Powered by Google App Engine
This is Rietveld 408576698