| 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 // dart2js regression test for issue 8781. | 5 // dart2js regression test for issue 8781. |
| 6 | 6 |
| 7 import "package:expect/expect.dart"; | |
| 8 | |
| 9 class N { | 7 class N { |
| 10 var outgoing; | 8 var outgoing; |
| 11 var incoming; | 9 var incoming; |
| 12 N(this.outgoing, this.incoming); | 10 N(this.outgoing, this.incoming); |
| 13 } | 11 } |
| 14 | 12 |
| 15 class A { | 13 class A { |
| 16 int offset = 0; | 14 int offset = 0; |
| 17 var list; | 15 var list; |
| 18 var node; | 16 var node; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 42 } | 40 } |
| 43 | 41 |
| 44 main () { | 42 main () { |
| 45 var o = new A(new N(new L([1]), new L([2]))); | 43 var o = new A(new N(new L([1]), new L([2]))); |
| 46 | 44 |
| 47 for (var i = 1; i <= 2; i++) | 45 for (var i = 1; i <= 2; i++) |
| 48 Expect.equals(i, o.next()); | 46 Expect.equals(i, o.next()); |
| 49 | 47 |
| 50 Expect.equals(null, o.list); | 48 Expect.equals(null, o.list); |
| 51 } | 49 } |
| OLD | NEW |