OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 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 | 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 // TODO(jmesserly): this is a copy of the language test of the same name, | 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. | 6 // we can remove this copy when we're running against those tests. |
7 import "expect.dart"; | 7 import "package:expect/expect.dart"; |
8 | 8 |
9 Iterable<int> foo1() sync* { | 9 Iterable<int> foo1() sync* { |
10 yield 1; | 10 yield 1; |
11 } | 11 } |
12 | 12 |
13 Iterable<int> foo2(p) sync* { | 13 Iterable<int> foo2(p) sync* { |
14 bool t = false; | 14 bool t = false; |
15 yield null; | 15 yield null; |
16 while (true) { | 16 while (true) { |
17 a: for (int i = 0; i < p; i++) { | 17 a: for (int i = 0; i < p; i++) { |
(...skipping 29 matching lines...) Expand all Loading... |
47 it2.moveNext(); /// copyParameters: continued | 47 it2.moveNext(); /// copyParameters: continued |
48 Expect.equals(2, it1.current); | 48 Expect.equals(2, it1.current); |
49 // TODO(sigurdm): Check up on the spec here. | 49 // TODO(sigurdm): Check up on the spec here. |
50 Expect.equals(2, it2.current); /// copyParameters: continued | 50 Expect.equals(2, it2.current); /// copyParameters: continued |
51 Expect.isFalse(it1.moveNext()); | 51 Expect.isFalse(it1.moveNext()); |
52 // Test that two `moveNext()` calls are fine. | 52 // Test that two `moveNext()` calls are fine. |
53 Expect.isFalse(it1.moveNext()); | 53 Expect.isFalse(it1.moveNext()); |
54 Expect.isFalse(it2.moveNext()); /// copyParameters: continued | 54 Expect.isFalse(it2.moveNext()); /// copyParameters: continued |
55 Expect.isFalse(it2.moveNext()); /// copyParameters: continued | 55 Expect.isFalse(it2.moveNext()); /// copyParameters: continued |
56 } | 56 } |
OLD | NEW |