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

Unified Diff: tests/language_strong/constructor_with_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_strong/constructor_with_mixin_test.dart
diff --git a/tests/language_strong/constructor_with_mixin_test.dart b/tests/language_strong/constructor_with_mixin_test.dart
index 0da90496013c90c879da0adad1e57e401c089afa..97a9a16f06270df831be41977f709f6c9a383fc0 100644
--- a/tests/language_strong/constructor_with_mixin_test.dart
+++ b/tests/language_strong/constructor_with_mixin_test.dart
@@ -17,12 +17,14 @@ class A {
}
}
-class I { }
+class I {}
class B extends A with I {
int y;
- B(int xx) : super(xx), y = 13 {
+ B(int xx)
+ : super(xx),
+ y = 13 {
b_count++;
}
}
@@ -32,4 +34,3 @@ void main() {
Expect.equals(1, a_count);
Expect.equals(1, b_count);
}
-

Powered by Google App Engine
This is Rietveld 408576698