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

Unified Diff: pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_5.dart.direct.expect

Issue 2976283002: Update expectations. (Closed)
Patch Set: Update compile.status. Created 3 years, 5 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_types_on_generic_instantiations_5.dart.direct.expect
diff --git a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_5.dart.direct.expect b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_5.dart.direct.expect
new file mode 100644
index 0000000000000000000000000000000000000000..053cc412b7aa2dd9f00213b670b59173790ff206
--- /dev/null
+++ b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_5.dart.direct.expect
@@ -0,0 +1,35 @@
+library test;
+import self as self;
+import "dart:core" as core;
+
+abstract class I<E extends core::Object> extends core::Object {
+ default constructor •() → void
+ : super core::Object::•()
+ ;
+ abstract method m(dynamic a, (dynamic, self::I::E) → core::String f) → core::String;
+}
+abstract class A<E extends core::Object> extends core::Object implements self::I<self::A::E> {
+ const constructor •() → void
+ : super core::Object::•()
+ ;
+ abstract method m(dynamic a, (dynamic, self::A::E) → core::String f) → core::String;
+}
+abstract class M extends core::Object {
+ final field core::int y = 0;
+ default constructor •() → void
+ : super core::Object::•()
+ ;
+}
+class B<E extends core::Object> extends self::A<self::B::E> implements self::M {
+ const constructor •() → void
+ : super self::A::•()
+ ;
+ get y() → core::int
+ return 0;
+ method m(dynamic a, (dynamic, self::B::E) → dynamic f) → dynamic {}
+}
+static method foo() → dynamic {
+ core::int y = new self::B::•<dynamic>().m(null, null);
+ core::String z = new self::B::•<dynamic>().m(null, null);
+}
+static method main() → dynamic {}

Powered by Google App Engine
This is Rietveld 408576698