| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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"; | |
| 6 | |
| 7 // Regression test for dart2js where the reference to [:this:] in a | 5 // Regression test for dart2js where the reference to [:this:] in a |
| 8 // constructor was not propagated to the super initializers. | 6 // constructor was not propagated to the super initializers. |
| 9 | 7 |
| 10 class A<T> { | 8 class A<T> { |
| 11 var map; | 9 var map; |
| 12 // Usage of type variables in the intializer makes the SSA builder | 10 // Usage of type variables in the intializer makes the SSA builder |
| 13 // want to access [:this:]. And because the initializers of A are | 11 // want to access [:this:]. And because the initializers of A are |
| 14 // inlined in the constructor of B, we have to make sure the | 12 // inlined in the constructor of B, we have to make sure the |
| 15 // [:this:] in the A constructor has a corresponding | 13 // [:this:] in the A constructor has a corresponding |
| 16 // SSA instruction. | 14 // SSA instruction. |
| 17 A() : map = new Map<T, T>(); | 15 A() : map = new Map<T, T>(); |
| 18 } | 16 } |
| 19 | 17 |
| 20 class B<T> extends A<T> { | 18 class B<T> extends A<T> { |
| 21 } | 19 } |
| 22 | 20 |
| 23 main() { | 21 main() { |
| 24 Expect.isTrue(new B<int>().map is Map<int, int>); | 22 Expect.isTrue(new B<int>().map is Map<int, int>); |
| 25 } | 23 } |
| OLD | NEW |