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

Unified Diff: tests/language/is_interfaces_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/is_interfaces_test.dart
diff --git a/tests/language/is_interfaces_test.dart b/tests/language/is_interfaces_test.dart
index dbdfa5d9e0d75a10c34761eab4b8c0d06c2b84ee..a71319abe27165c080da3642e06faf3e0d31777d 100644
--- a/tests/language/is_interfaces_test.dart
+++ b/tests/language/is_interfaces_test.dart
@@ -4,14 +4,11 @@
import "package:expect/expect.dart";
-class A {
-}
+class A {}
-class B extends A {
-}
+class B extends A {}
-class C implements B {
-}
+class C implements B {}
int inscrutable(int x) => x == 0 ? 0 : x | inscrutable(x & (x - 1));

Powered by Google App Engine
This is Rietveld 408576698