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

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

Issue 2909503004: Update strong mode expectations to reflect kernel type parameter conventions. (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_named_factory.dart
diff --git a/pkg/front_end/testcases/inference/constructors_infer_from_arguments_named_factory.dart b/pkg/front_end/testcases/inference/constructors_infer_from_arguments_named_factory.dart
index 2bffed86f56973f9ee065f747ac71303b04a4a5e..4edf3961b839759699a561b8ef3881a7425e98e3 100644
--- a/pkg/front_end/testcases/inference/constructors_infer_from_arguments_named_factory.dart
+++ b/pkg/front_end/testcases/inference/constructors_infer_from_arguments_named_factory.dart
@@ -10,7 +10,7 @@ class C<T> {
C();
factory C.named(T t) {
- var /*@type=C<T>*/ x = new C<T>();
+ var /*@type=C<C::named::T>*/ x = new C<T>();
x.t = t;
return x;
}

Powered by Google App Engine
This is Rietveld 408576698