| 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 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 | 6 |
| 7 // Test that the constructor body of a superclass is invoked. | 7 // Test that the constructor body of a superclass is invoked. |
| 8 | 8 |
| 9 class Super { | 9 class Super { |
| 10 final superArgument; | 10 final superArgument; |
| 11 var superField; | 11 var superField; |
| 12 | 12 |
| 13 Super() : this.named(''); // Redirection is required to trigger the bug. | 13 Super() : this.named(''); // Redirection is required to trigger the bug. |
| 14 | 14 |
| 15 Super.named(this.superArgument) { | 15 Super.named(this.superArgument) { |
| 16 superField = 'fisk'; | 16 superField = 'fisk'; |
| 17 } | 17 } |
| 18 } | 18 } |
| 19 | 19 |
| 20 class Sub extends Super { | 20 class Sub extends Super { |
| 21 var subField; | 21 var subField; |
| 22 | 22 |
| 23 // Test for a bug when super() is the first initializer. | 23 // Test for a bug when super() is the first initializer. |
| 24 Sub.first() : super(), subField = []; | 24 Sub.first() |
| 25 : super(), |
| 26 subField = []; |
| 25 | 27 |
| 26 Sub.last() : subField = [], super(); | 28 Sub.last() |
| 29 : subField = [], |
| 30 super(); |
| 27 } | 31 } |
| 28 | 32 |
| 29 main() { | 33 main() { |
| 30 Expect.equals('fisk', new Sub.last().superField); | 34 Expect.equals('fisk', new Sub.last().superField); |
| 31 Expect.equals('fisk', new Sub.first().superField); | 35 Expect.equals('fisk', new Sub.first().superField); |
| 32 } | 36 } |
| OLD | NEW |