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

Unified Diff: tests/language/function_type_alias2_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files 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: tests/language/function_type_alias2_test.dart
diff --git a/tests/language/function_type_alias2_test.dart b/tests/language/function_type_alias2_test.dart
index bce01b01102e27b4ed854bb5aa33eea75f982cf4..f3302ec56ac3c2fd4238caf99611a0b63a3f5e1f 100644
--- a/tests/language/function_type_alias2_test.dart
+++ b/tests/language/function_type_alias2_test.dart
@@ -13,13 +13,13 @@ typedef int f3<T>({int a, int b, T c});
typedef int f4<T>({int a, int b, T d});
class A<T> {
- int baz([int a, int b, T c]) { }
- int bar({int a, int b, T c}) { }
+ int baz([int a, int b, T c]) {}
+ int bar({int a, int b, T c}) {}
}
-int baz([int a, int b, int c]) { }
+int baz([int a, int b, int c]) {}
-int bar({int a, int b, int c}) { }
+int bar({int a, int b, int c}) {}
main() {
Expect.isTrue(baz is f1);

Powered by Google App Engine
This is Rietveld 408576698