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

Unified Diff: tests/language_strong/getter_parameters_test.dart

Issue 2774783002: Re-land "Format all multitests" (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « tests/language_strong/getter_no_setter_test.dart ('k') | tests/language_strong/getters_setters2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/getter_parameters_test.dart
diff --git a/tests/language_strong/getter_parameters_test.dart b/tests/language_strong/getter_parameters_test.dart
index c98a98af75396bc4f0a01d035dce77e00f881f29..985e64106fd64f0c305672e0e1a22da8ac898217 100644
--- a/tests/language_strong/getter_parameters_test.dart
+++ b/tests/language_strong/getter_parameters_test.dart
@@ -7,16 +7,16 @@
get f1 => null;
get f2
() //# 01: compile-time error
-=> null;
+ => null;
get f3
(arg) //# 02: compile-time error
-=> null;
+ => null;
get f4
([arg]) //# 03: compile-time error
-=> null;
+ => null;
get f5
({arg}) //# 04: compile-time error
-=> null;
+ => null;
main() {
f1;
@@ -25,4 +25,3 @@ main() {
f4;
f5;
}
-
« no previous file with comments | « tests/language_strong/getter_no_setter_test.dart ('k') | tests/language_strong/getters_setters2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698