Index: frog/tests/await/chaining_await_test.dart |
diff --git a/frog/tests/await/chaining_await_test.dart b/frog/tests/await/chaining_await_test.dart |
deleted file mode 100644 |
index a0f3f2b64d41b31e4e6b11a4517cf2ef3846233f..0000000000000000000000000000000000000000 |
--- a/frog/tests/await/chaining_await_test.dart |
+++ /dev/null |
@@ -1,29 +0,0 @@ |
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE file. |
- |
-// The next line is used to tell test.dart that this test is run by invoking |
-// awaitc.dart and passing this file as an argument (e.g. frog |
-// frog/await/awaitc.dart test.dart): |
-// VMOptions=frog/await/awaitc.dart |
- |
-// Chaining await expressions. |
- |
-#import("await_test_helper.dart"); |
- |
-bool called = false; |
- |
-f2() { |
- final x = await futureOf(3); |
- return x + 1; |
-} |
- |
-f1() { |
- final x = await f2(); |
- return x + 10; |
-} |
- |
-main() { |
- final x = await f1(); |
- Expect.equals(14, x); |
-} |