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

Unified Diff: tests/language/mixin_naming_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_naming_test.dart
diff --git a/tests/language/mixin_naming_test.dart b/tests/language/mixin_naming_test.dart
index 838948b6882b4bc33a8b83b337529da07b559d4e..a4c267aeeb0bec05ebd7a4b306081d253c2cc62f 100644
--- a/tests/language/mixin_naming_test.dart
+++ b/tests/language/mixin_naming_test.dart
@@ -4,16 +4,21 @@
import "package:expect/expect.dart";
-class S { }
-class M1 { }
-class M2 { }
-class M3 { }
+class S {}
+
+class M1 {}
+
+class M2 {}
+
+class M3 {}
class C = S with M1, M2, M3;
-class D extends S with M1, M2, M3 { }
-class S_M1 { }
-class S_M1_M2 { }
+class D extends S with M1, M2, M3 {}
+
+class S_M1 {}
+
+class S_M1_M2 {}
main() {
var c = new C();

Powered by Google App Engine
This is Rietveld 408576698