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

Unified Diff: tests/language/mixin_mixin_bound_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/mixin_mixin_bound_test.dart
diff --git a/tests/language/mixin_mixin_bound_test.dart b/tests/language/mixin_mixin_bound_test.dart
index 19f276f1cbfdb59e574ef6f54b2847379cd62f99..dfa62738ce39547b47e1dd648560cd69ba285bcd 100644
--- a/tests/language/mixin_mixin_bound_test.dart
+++ b/tests/language/mixin_mixin_bound_test.dart
@@ -4,14 +4,16 @@
import "package:expect/expect.dart";
-class I<T> { }
+class I<T> {}
-class J<T> { }
+class J<T> {}
-class S<U extends Set<V>, V> { }
+class S<U extends Set<V>, V> {}
class M<U, V, T extends Map<U, V>> {
- t() { return T; }
+ t() {
+ return T;
+ }
}
class A<U, V extends List> = Object with M<U, V, Map<U, V>> implements I<V>;

Powered by Google App Engine
This is Rietveld 408576698