Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: test/codegen/language/syncstar_yield_test.dart

Issue 1243503007: fixes #221, initial sync*, async, async* implementation (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « test/codegen/language/asyncstar_yieldstar_test.dart ('k') | test/codegen/language/syncstar_yieldstar_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698