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

Unified Diff: tests/language_strong/generic_syntax_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_strong/generic_syntax_test.dart
diff --git a/tests/language_strong/generic_syntax_test.dart b/tests/language_strong/generic_syntax_test.dart
index bb8850a141ad3328418b931fb998b7a9dce86e27..7ccc03974f4008b300a69a96cff8fc42509c2bff 100644
--- a/tests/language_strong/generic_syntax_test.dart
+++ b/tests/language_strong/generic_syntax_test.dart
@@ -31,8 +31,10 @@ class GenericSyntaxTest<B, C, D, E, F> {
var f = 6;
var g = 7;
var h = null;
- bar((A<B, C, D, E, F> g) { return h; }); // 'A<B' starts a generic type.
- foo(a<b, c, d, e, f> g); // 'a<b' is a boolean function argument.
+ bar((A<B, C, D, E, F> g) {
+ return h;
+ }); // 'A<B' starts a generic type.
+ foo(a < b, c, d, e, f > g); // 'a<b' is a boolean function argument.
}
static testMain() {
@@ -40,8 +42,7 @@ class GenericSyntaxTest<B, C, D, E, F> {
}
}
-abstract class A<B, C, D, E, F> {
-}
+abstract class A<B, C, D, E, F> {}
main() {
GenericSyntaxTest.testMain();

Powered by Google App Engine
This is Rietveld 408576698