| 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 and initializers. | 4 // Dart test program for constructors and initializers. |
| 5 | 5 |
| 6 class A extends B { | 6 class A extends B { |
| 7 A(x, y) : super(y), a = x { } | 7 A(x, y) : super(y), a = x { } |
| 8 | 8 |
| 9 var a; | 9 var a; |
| 10 } | 10 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 Expect.equals(22, o.a + o.b + o1.b); | 51 Expect.equals(22, o.a + o.b + o1.b); |
| 52 | 52 |
| 53 var beta = new Beta(3); | 53 var beta = new Beta(3); |
| 54 Expect.equals(3, beta.b); | 54 Expect.equals(3, beta.b); |
| 55 } | 55 } |
| 56 } | 56 } |
| 57 | 57 |
| 58 main() { | 58 main() { |
| 59 ConstructorTest.testMain(); | 59 ConstructorTest.testMain(); |
| 60 } | 60 } |
| OLD | NEW |