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

Unified Diff: pkg/front_end/testcases/shaker/lib/lib.dart

Issue 3009803002: Mark types of Constructor parameters and preserve referenced typedefs. (Closed)
Patch Set: Created 3 years, 4 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/shaker/lib/lib.dart
diff --git a/pkg/front_end/testcases/shaker/lib/lib.dart b/pkg/front_end/testcases/shaker/lib/lib.dart
index 3abba2d53bad66c3066e2a6bf56181c83be59670..afb97c5a9c2bac2c82a571ead99efb7ca65b040b 100644
--- a/pkg/front_end/testcases/shaker/lib/lib.dart
+++ b/pkg/front_end/testcases/shaker/lib/lib.dart
@@ -26,7 +26,9 @@ class Bound {}
class Base<T extends Bound> {}
-typedef T MyTypedef<T>(T arg);
+typedef T Typedef1<T>(T arg);
+
+typedef String Typedef2(int arg);
class F {
K field;

Powered by Google App Engine
This is Rietveld 408576698