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

Unified Diff: tests/language/mixin_super_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_super_bound_test.dart
diff --git a/tests/language/mixin_super_bound_test.dart b/tests/language/mixin_super_bound_test.dart
index 1e8ef80019080017f4d9f3ee836d697ac3392c8f..fe6a283b4b5a97516cbb59065a466f85b65b80f3 100644
--- a/tests/language/mixin_super_bound_test.dart
+++ b/tests/language/mixin_super_bound_test.dart
@@ -14,13 +14,13 @@ bool inCheckedMode() {
return false;
}
-class M<U extends V, V> { }
+class M<U extends V, V> {}
-class N<U, V extends U> { }
+class N<U, V extends U> {}
-class S<T> { }
+class S<T> {}
-class MNA<U, V, W> extends S<List<U>> with M<V, U>, N<List<W>, List<W>> { }
+class MNA<U, V, W> extends S<List<U>> with M<V, U>, N<List<W>, List<W>> {}
class MNA2<U, V, W> = S<List<U>> with M<V, U>, N<List<W>, List<W>>;
@@ -39,4 +39,3 @@ main() {
new MNA2<int, num, bool>();
}
}
-

Powered by Google App Engine
This is Rietveld 408576698