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

Unified Diff: pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.dart

Issue 2946273002: Implement override-based type inference for instance methods. (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_types_on_generic_instantiations_in_library_cycle.dart
diff --git a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.dart b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.dart
index 49235aa483797006d5b3b1e17bca67aece5dabfb..c3b7d7d144517dec05228962b3ea625c218ff654 100644
--- a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.dart
+++ b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_in_library_cycle.dart
@@ -21,7 +21,7 @@ class B<E> extends A<E> implements M {
const B();
int get y => 0;
- m(a, f(v, int e)) {}
+ /*@topType=A<B::E>*/ m(/*@topType=dynamic*/ a, f(v, int e)) {}
}
foo() {

Powered by Google App Engine
This is Rietveld 408576698