OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Dart test program for constructors without function bodies. | 4 // Dart test program for constructors without function bodies. |
5 | 5 |
6 // Test a non-const constructor works without a body. | 6 // Test a non-const constructor works without a body. |
7 class First { | 7 class First { |
8 First(int this.value); | 8 First(int this.value); |
9 First.named(int this.value); | 9 First.named(int this.value); |
10 int value; | 10 int value; |
(...skipping 11 matching lines...) Expand all Loading... |
22 Expect.equals(4, new First(4).value); | 22 Expect.equals(4, new First(4).value); |
23 Expect.equals(5, new First.named(5).value); | 23 Expect.equals(5, new First.named(5).value); |
24 Expect.equals(6, new Second(6).value); | 24 Expect.equals(6, new Second(6).value); |
25 Expect.equals(7, new Second.named(7).value); | 25 Expect.equals(7, new Second.named(7).value); |
26 } | 26 } |
27 } | 27 } |
28 | 28 |
29 main() { | 29 main() { |
30 ConstructorBodyTest.testMain(); | 30 ConstructorBodyTest.testMain(); |
31 } | 31 } |
OLD | NEW |