| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 import "package:expect/expect.dart"; | |
| 6 | |
| 7 class A { | |
| 8 final x; | |
| 9 const A(this.x); | |
| 10 const A.named([this.x]); | |
| 11 const A.named2([this.x = 2]); | |
| 12 } | |
| 13 | |
| 14 const a1 = const A(0); | |
| 15 const a2 = const A.named(); | |
| 16 const a3 = const A.named(1); | |
| 17 const a4 = const A.named2(); | |
| 18 const a5 = const A.named2(3); | |
| 19 | |
| 20 main() { | |
| 21 Expect.equals(0, a1.x); | |
| 22 Expect.equals(null, a2.x); | |
| 23 Expect.equals(1, a3.x); | |
| 24 Expect.equals(2, a4.x); | |
| 25 Expect.equals(3, a5.x); | |
| 26 } | |
| OLD | NEW |