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

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

Issue 2848033002: Don't include parameter names in types, don't use Unicode arrow. (Closed)
Patch Set: Created 3 years, 8 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/inferred_type_uses_synthetic_function_type_required_param.dart
diff --git a/pkg/front_end/testcases/inference/inferred_type_uses_synthetic_function_type_required_param.dart b/pkg/front_end/testcases/inference/inferred_type_uses_synthetic_function_type_required_param.dart
index c2c66a1268b2a1dbbbe257fc13a537632d10fa70..330624d2ccfceb68de09317da1d4109215e2956e 100644
--- a/pkg/front_end/testcases/inference/inferred_type_uses_synthetic_function_type_required_param.dart
+++ b/pkg/front_end/testcases/inference/inferred_type_uses_synthetic_function_type_required_param.dart
@@ -7,7 +7,4 @@ library test;
int f(int x) => null;
String g(int x) => null;
-var /*@topType=List<(int x) → Object>*/ v = /*@typeArgs=(int x) → Object*/ [
- f,
- g
-];
+var /*@topType=List<(int) -> Object>*/ v = /*@typeArgs=(int) -> Object*/ [f, g];

Powered by Google App Engine
This is Rietveld 408576698