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

Unified Diff: tests/language/mixin_mixin7_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_mixin7_test.dart
diff --git a/tests/language/mixin_mixin7_test.dart b/tests/language/mixin_mixin7_test.dart
index 1d8fd3093e89d55caab91ef2ddbc335fb7a06725..63da11c7fae03f13cad8334ef69de14536dccc56 100644
--- a/tests/language/mixin_mixin7_test.dart
+++ b/tests/language/mixin_mixin7_test.dart
@@ -4,25 +4,28 @@
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<T> { }
+class S<T> {}
class M<T> {
- m() { return T; }
+ m() {
+ return T;
+ }
}
-class A<U, V> = Object with M implements I<V>; // M is raw.
+class A<U, V> = Object with M implements I<V>; // M is raw.
-class B<T> = Object with A implements J<T>; // A is raw.
+class B<T> = Object with A implements J<T>; // A is raw.
-class C<T> = S<List<T>> with B implements K<T>; // B is raw.
+class C<T> = S<List<T>> with B implements K<T>; // B is raw.
-@NoInline() @AssumeDynamic()
+@NoInline()
+@AssumeDynamic()
dyn(x) => x;
main() {
@@ -42,5 +45,4 @@ main() {
Expect.isTrue(dyn(c) is S<List<int>>);
Expect.isTrue(dyn(c) is A);
Expect.isTrue(dyn(c) is M);
-
}

Powered by Google App Engine
This is Rietveld 408576698