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

Side by Side Diff: tests/language_2/async_regression_23058_test.dart

Issue 2985173002: Migrate language/async_backwards... ... language/async_star_take... (Closed)
Patch Set: Update tests to Dart 2.0. 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 // Regression test for issue 23058. 5 // Regression test for issue 23058.
6 6
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 class A { 10 class A {
(...skipping 16 matching lines...) Expand all
27 } 27 }
28 } 28 }
29 29
30 main() { 30 main() {
31 asyncStart(); 31 asyncStart();
32 new A().foo().then((result) { 32 new A().foo().then((result) {
33 Expect.equals(1, result); 33 Expect.equals(1, result);
34 asyncEnd(); 34 asyncEnd();
35 }); 35 });
36 } 36 }
OLDNEW
« no previous file with comments | « tests/language_2/async_or_generator_return_type_stacktrace_test.dart ('k') | tests/language_2/async_rethrow_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698