Index: tests/language_strong/compile_time_constant_e_test.dart |
diff --git a/tests/language_strong/compile_time_constant_e_test.dart b/tests/language_strong/compile_time_constant_e_test.dart |
index 7ab0ea22016299167baadc1cfee40a08e30c9ea2..77a4082942fe376101366631e221cc04f27af89c 100644 |
--- a/tests/language_strong/compile_time_constant_e_test.dart |
+++ b/tests/language_strong/compile_time_constant_e_test.dart |
@@ -10,10 +10,23 @@ class A { |
final z; |
final t; |
- const A([this.z = 99, tt = 100]) : y = 499, t = tt, x = 3; |
- const A.n({this.z: 99, tt: 100}) : y = 499, t = tt, x = 3; |
- const A.named({z, this.t}) : y = 400 + z, this.z = z, x = 3; |
- const A.named2({t, z, y, x}) : x = t, y = z, z = y, t = x; |
+ const A([this.z = 99, tt = 100]) |
+ : y = 499, |
+ t = tt, |
+ x = 3; |
+ const A.n({this.z: 99, tt: 100}) |
+ : y = 499, |
+ t = tt, |
+ x = 3; |
+ const A.named({z, this.t}) |
+ : y = 400 + z, |
+ this.z = z, |
+ x = 3; |
+ const A.named2({t, z, y, x}) |
+ : x = t, |
+ y = z, |
+ z = y, |
+ t = x; |
toString() => "A $x $y $z $t"; |
} |