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

Side by Side Diff: tests/language/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
(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 // Regression test for issue 23058.
6
7 import "package:expect/expect.dart";
8 import "package:async_helper/async_helper.dart";
9
10 class A {
11 var x = new B();
12
13 foo() async {
14 return x.foo == 2 ? 42 : x.foo;
15 }
16 }
17
18 class B {
19 var x = 0;
20
21 get foo {
22 if (x == -1) {
23 return 0;
24 } else {
25 return x++;
26 }
27 }
28 }
29
30 main() {
31 asyncStart();
32 new A().foo().then((result) {
33 Expect.equals(1, result);
34 asyncEnd();
35 });
36 }
OLDNEW
« no previous file with comments | « tests/language/async_or_generator_return_type_stacktrace_test.dart ('k') | tests/language/async_rethrow_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698