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