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

Unified Diff: tests/language_strong/mixin_mixin2_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_mixin2_test.dart
diff --git a/tests/language_strong/mixin_mixin2_test.dart b/tests/language_strong/mixin_mixin2_test.dart
index ddbb1b83e6bb37bb451088ac446166b4050dbdba..b9da5794c9beb804707f49fa15744837fb3f3d5a 100644
--- a/tests/language_strong/mixin_mixin2_test.dart
+++ b/tests/language_strong/mixin_mixin2_test.dart
@@ -5,7 +5,9 @@
import "package:expect/expect.dart";
class M<T> {
- t() { return T; }
+ t() {
+ return T;
+ }
}
class A<U> = Object with M<U>;
@@ -16,13 +18,13 @@ class C<U> = Object with M<List<U>>;
class D<V> = Object with C<Set<V>>;
-class E extends A<num> { }
+class E extends A<num> {}
-class F extends B<String> { }
+class F extends B<String> {}
-class G<T> extends C<T> { }
+class G<T> extends C<T> {}
-class H<T> extends D<Map<String, T>> { }
+class H<T> extends D<Map<String, T>> {}
main() {
Expect.equals("num", new E().t().toString());

Powered by Google App Engine
This is Rietveld 408576698