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

Unified Diff: tests/language/mixin_mixin_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_mixin_test.dart
diff --git a/tests/language/mixin_mixin_test.dart b/tests/language/mixin_mixin_test.dart
index 5b4e518aac5aabb99d942259a10b64e6d118b059..8f32aba870861c4ec5f53693c1bc4d71aa97edb2 100644
--- a/tests/language/mixin_mixin_test.dart
+++ b/tests/language/mixin_mixin_test.dart
@@ -4,10 +4,14 @@
import "package:expect/expect.dart";
-class M1 { foo() => 42; }
+class M1 {
+ foo() => 42;
+}
+
class M2 = Object with M1;
-class S { }
+class S {}
+
class C = S with M2;
main() {

Powered by Google App Engine
This is Rietveld 408576698