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

Unified Diff: tests/language_strong/constructor11_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/constructor11_test.dart
diff --git a/tests/language_strong/constructor11_test.dart b/tests/language_strong/constructor11_test.dart
index 5a971e57bd3c3130dfdcab1338847b18bf792e1c..73d08a386a6550baa45bc86ffaaeaf82f2642e71 100644
--- a/tests/language_strong/constructor11_test.dart
+++ b/tests/language_strong/constructor11_test.dart
@@ -11,8 +11,7 @@ class A {
A([this.x = 499]);
}
-class B extends A {
-}
+class B extends A {}
// ==========
@@ -21,8 +20,7 @@ class X {
X([this.x = 42]);
}
-class Y extends X {
-}
+class Y extends X {}
class Z extends Y {
Z() : super();
@@ -35,11 +33,9 @@ class F {
F([this.x = 99]);
}
-class G extends F {
-}
+class G extends F {}
-class H extends G {
-}
+class H extends G {}
main() {
Expect.equals(499, new B().x);

Powered by Google App Engine
This is Rietveld 408576698