| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 // Dart test program for constructors without function bodies. | |
| 5 | |
| 6 // Test a non-const constructor works without a body. | |
| 7 class First { | |
| 8 First(int this.value); | |
| 9 First.named(int this.value); | |
| 10 int value; | |
| 11 } | |
| 12 | |
| 13 // Test a const constructor works without a body. | |
| 14 class Second { | |
| 15 const Second(int this.value); | |
| 16 const Second.named(int this.value); | |
| 17 final int value; | |
| 18 } | |
| 19 | |
| 20 class ConstructorBodyTest { | |
| 21 static testMain() { | |
| 22 Expect.equals(4, new First(4).value); | |
| 23 Expect.equals(5, new First.named(5).value); | |
| 24 Expect.equals(6, new Second(6).value); | |
| 25 Expect.equals(7, new Second.named(7).value); | |
| 26 } | |
| 27 } | |
| 28 | |
| 29 main() { | |
| 30 ConstructorBodyTest.testMain(); | |
| 31 } | |
| OLD | NEW |