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

Side by Side Diff: tests/language_strong/async_star_regression_2238_test.dart

Issue 2986093002: Revert two Kernel changes that were causing test failures. (Closed)
Patch Set: Revert "Migrate language/async_backwards... ... language/async_star_take..." Created 3 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 // This is a regression test for issue 2238 5 // This is a regression test for issue 2238
6 import "dart:async"; 6 import "dart:async";
7 import "package:expect/expect.dart"; 7 import "package:expect/expect.dart";
8 import "package:async_helper/async_helper.dart"; 8 import "package:async_helper/async_helper.dart";
9 9
10 main() { 10 main() {
11 f() async* { 11 f() async* {
12 label1: 12 label1:
13 label2: 13 label2:
14 yield 0; 14 yield 0;
15 } 15 }
16 16
17 asyncStart(); 17 asyncStart();
18 f().toList().then((list) { 18 f().toList().then((list) {
19 Expect.listEquals([0], list); 19 Expect.listEquals([0], list);
20 asyncEnd(); 20 asyncEnd();
21 }); 21 });
22 } 22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698