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

Unified Diff: tests/language_strong/generics2_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/generics2_test.dart
diff --git a/tests/language_strong/generics2_test.dart b/tests/language_strong/generics2_test.dart
index 0a28a2fd779dae6db43b75894496155c467db9bd..a492e558c1710df7cab4503976c5d37aa054e072 100644
--- a/tests/language_strong/generics2_test.dart
+++ b/tests/language_strong/generics2_test.dart
@@ -5,7 +5,7 @@
//
// Dart test program testing generic type allocations and generic type tests.
-class A<E> { }
+class A<E> {}
class Pair<P, Q> extends A /* i.e. extends A<dynamic> */ {
final P fst;
@@ -14,7 +14,6 @@ class Pair<P, Q> extends A /* i.e. extends A<dynamic> */ {
}
main() {
- print(new Pair<int,int>(1, 2));
- print(new Pair<String,int>("1", 2));
+ print(new Pair<int, int>(1, 2));
+ print(new Pair<String, int>("1", 2));
}
-

Powered by Google App Engine
This is Rietveld 408576698