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

Unified Diff: tests/language/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/constructor7_test.dart
diff --git a/tests/language/constructor7_test.dart b/tests/language/constructor7_test.dart
index 79df26a662f9d900d86e20dfb980fcc7570ce7b1..131dbd08a65c1c1174029f89ad2a4768bd3d5ca8 100644
--- a/tests/language/constructor7_test.dart
+++ b/tests/language/constructor7_test.dart
@@ -19,7 +19,7 @@ int E(int i) {
class A {
var j; // Names are in reverse order to detect sorting by name...
- var i = 0; // Initialized odd/even to detect these inits affecting order.
+ var i = 0; // Initialized odd/even to detect these inits affecting order.
var h;
var g = 0;
var f;
@@ -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