OLD | NEW |
| (Empty) |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | |
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. | |
4 | |
5 // TODO(jmesserly): this is a copy of the language test of the same name, | |
6 // we can remove this copy when we're running against those tests. | |
7 import "expect.dart"; | |
8 | |
9 bar() sync* { | |
10 int i = 1; | |
11 int j = 1; | |
12 while (true) { | |
13 yield i; | |
14 j = i + j; | |
15 i = j - i; | |
16 } | |
17 } | |
18 | |
19 foo() sync* { | |
20 yield* [1, 2, 3]; | |
21 yield null; | |
22 // TODO(jmesserly): added cast here to work around: | |
23 // https://codereview.chromium.org/1213503002/ | |
24 yield* bar() as Iterable; | |
25 } | |
26 | |
27 main () async { | |
28 Expect.listEquals([1, 2, 3, null, 1, 1, 2, 3, 5], foo().take(9).toList()); | |
29 } | |
OLD | NEW |