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

Unified Diff: tests/language_strong/constructor7_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/constructor7_test.dart
diff --git a/tests/language_strong/constructor7_test.dart b/tests/language_strong/constructor7_test.dart
index f81c78cef0323f16ba50448bfbe11b1503489207..5ed7be425338a2a8f555e1dd2c6908ea85e08e39 100644
--- a/tests/language_strong/constructor7_test.dart
+++ b/tests/language_strong/constructor7_test.dart
@@ -30,19 +30,16 @@ class A {
var a = 0;
A()
- : a = E(1), // Initializations in different order to decls. Ascending...
- b = E(2),
- c = E(3),
-
- f = E(4), // Descending to be perverse...
- e = E(5),
- d = E(6),
-
- g = E(7), // Ascending again.
- h = E(8),
- i = E(9),
- j = E(10) {
-
+ : a = E(1), // Initializations in different order to decls. Ascending...
+ b = E(2),
+ c = E(3),
+ f = E(4), // Descending to be perverse...
+ e = E(5),
+ d = E(6),
+ g = E(7), // Ascending again.
+ h = E(8),
+ i = E(9),
+ j = E(10) {
Expect.equals(1, a);
Expect.equals(2, b);
Expect.equals(3, c);

Powered by Google App Engine
This is Rietveld 408576698