| 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"; |
| 6 |
| 5 class A extends Iterable { | 7 class A extends Iterable { |
| 6 int count; | 8 int count; |
| 7 A(this.count); | 9 A(this.count); |
| 8 | 10 |
| 9 Iterator get iterator { | 11 Iterator get iterator { |
| 10 return new AIterator(count); | 12 return new AIterator(count); |
| 11 } | 13 } |
| 12 } | 14 } |
| 13 | 15 |
| 14 class AIterator implements Iterator { | 16 class AIterator implements Iterator { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 32 | 34 |
| 33 main() { | 35 main() { |
| 34 var a = new A(10); | 36 var a = new A(10); |
| 35 Expect.equals(10, a.length); | 37 Expect.equals(10, a.length); |
| 36 a = new A(0); | 38 a = new A(0); |
| 37 Expect.equals(0, a.length); | 39 Expect.equals(0, a.length); |
| 38 a = new A(5); | 40 a = new A(5); |
| 39 Expect.equals(5, a.map((e) => e + 1).length); | 41 Expect.equals(5, a.map((e) => e + 1).length); |
| 40 Expect.equals(3, a.where((e) => e >= 3).length); | 42 Expect.equals(3, a.where((e) => e >= 3).length); |
| 41 } | 43 } |
| OLD | NEW |