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

Unified Diff: tests/language/named_parameters_type_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/named_parameters_test.dart ('k') | tests/language/not_enough_positional_arguments_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/named_parameters_type_test.dart
diff --git a/tests/language/named_parameters_type_test.dart b/tests/language/named_parameters_type_test.dart
index 21c7e2a5e7db68b691eb96772f15f155568b69f1..2d62e8c2dfb055be4f16cb08b5e9143ee1f80422 100644
--- a/tests/language/named_parameters_type_test.dart
+++ b/tests/language/named_parameters_type_test.dart
@@ -7,11 +7,16 @@
main() {
Function anyFunction;
- void acceptFunNumOptBool(void funNumOptBool(num n, {bool b})) { };
- void funNum(num n) { };
- void funNumBool(num n, bool b) { };
- void funNumOptBool(num n, {bool b: true}) { };
- void funNumOptBoolX(num n, {bool x: true}) { };
+ void acceptFunNumOptBool(void funNumOptBool(num n, {bool b})) {}
+ ;
+ void funNum(num n) {}
+ ;
+ void funNumBool(num n, bool b) {}
+ ;
+ void funNumOptBool(num n, {bool b: true}) {}
+ ;
+ void funNumOptBoolX(num n, {bool x: true}) {}
+ ;
anyFunction = funNum;
anyFunction = funNumBool;
anyFunction = funNumOptBool;
« no previous file with comments | « tests/language/named_parameters_test.dart ('k') | tests/language/not_enough_positional_arguments_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698