| 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);
|
|
|