| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 class A { | 5 class A { |
| 6 final x; | 6 final x; |
| 7 const A(this.x); | 7 const A(this.x); |
| 8 const A.named([this.x]); | 8 const A.named([this.x]); |
| 9 const A.named2([this.x = 2]); | 9 const A.named2([this.x = 2]); |
| 10 } | 10 } |
| 11 | 11 |
| 12 final a1 = const A(0); | 12 const a1 = const A(0); |
| 13 final a2 = const A.named(); | 13 const a2 = const A.named(); |
| 14 final a3 = const A.named(1); | 14 const a3 = const A.named(1); |
| 15 final a4 = const A.named2(); | 15 const a4 = const A.named2(); |
| 16 final a5 = const A.named2(3); | 16 const a5 = const A.named2(3); |
| 17 | 17 |
| 18 main() { | 18 main() { |
| 19 Expect.equals(0, a1.x); | 19 Expect.equals(0, a1.x); |
| 20 Expect.equals(null, a2.x); | 20 Expect.equals(null, a2.x); |
| 21 Expect.equals(1, a3.x); | 21 Expect.equals(1, a3.x); |
| 22 Expect.equals(2, a4.x); | 22 Expect.equals(2, a4.x); |
| 23 Expect.equals(3, a5.x); | 23 Expect.equals(3, a5.x); |
| 24 } | 24 } |
| OLD | NEW |