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

Unified Diff: tests/language_strong/mixin_mixin4_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/mixin_mixin4_test.dart
diff --git a/tests/language_strong/mixin_mixin4_test.dart b/tests/language_strong/mixin_mixin4_test.dart
index b527ef78407d187d02345977a8f13d88b6e62834..a982532f936bdce38b0fae36e14a783907d13f50 100644
--- a/tests/language_strong/mixin_mixin4_test.dart
+++ b/tests/language_strong/mixin_mixin4_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<T> { }
+class S<T> {}
class M<T> {
- t() { return T; }
+ t() {
+ return T;
+ }
}
class A<U, V> = Object with M<Map<U, V>> implements I<V>;

Powered by Google App Engine
This is Rietveld 408576698