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

Unified Diff: tests/language_strong/cascade_in_initializer_list_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/cascade_in_initializer_list_test.dart
diff --git a/tests/language_strong/cascade_in_initializer_list_test.dart b/tests/language_strong/cascade_in_initializer_list_test.dart
index 8e7e9ee11e9fa950fa4db917c36c135d5bec357f..37da002baf6cfd2687f75c14e099f81716d43d9f 100644
--- a/tests/language_strong/cascade_in_initializer_list_test.dart
+++ b/tests/language_strong/cascade_in_initializer_list_test.dart
@@ -13,11 +13,17 @@ class B {
var x;
final y;
- B(a) : x = a..foo()..bar(), y = a..foo()..bar() {}
+ B(a)
+ : x = a
+ ..foo()
+ ..bar(),
+ y = a
+ ..foo()
+ ..bar() {}
}
main() {
var a = new A(), b = new B(a);
Expect.equals(a, b.x);
Expect.equals(a, b.y);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698