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

Unified Diff: tests/language/mixin_mixin_bound2_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_bound2_test.dart
diff --git a/tests/language/mixin_mixin_bound2_test.dart b/tests/language/mixin_mixin_bound2_test.dart
index 726a200eec0ca9aa32434a28c6647a03df0e7d1f..76da3a9d77fbd36b826bded67e2a6cbadb4dd28e 100644
--- a/tests/language/mixin_mixin_bound2_test.dart
+++ b/tests/language/mixin_mixin_bound2_test.dart
@@ -4,16 +4,18 @@
import "package:expect/expect.dart";
-class I<T> { }
+class I<T> {}
-class J<T> { }
+class J<T> {}
-class K<T> { }
+class K<T> {}
-class S<U extends Set<V>, V> { }
+class S<U extends Set<V>, V> {}
class M<U, V, T extends Map<U, V>> {
- m() { return T; }
+ m() {
+ return T;
+ }
}
class A<U, V extends Set<U>> = Object with M<U, V, Map<U, V>> implements I<V>;
@@ -30,5 +32,6 @@ main() {
Expect.isTrue(c is I<Set<List<int>>>);
Expect.isTrue(c is S<Set<int>, int>);
Expect.isTrue(c is A<List<int>, Set<List<int>>>);
- Expect.isTrue(c is M<List<int>, Set<List<int>>, Map<List<int>, Set<List<int>>>>);
+ Expect.isTrue(
+ c is M<List<int>, Set<List<int>>, Map<List<int>, Set<List<int>>>>);
}

Powered by Google App Engine
This is Rietveld 408576698