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

Unified Diff: pkg/dev_compiler/test/codegen/language/await_in_cascade_test.dart

Issue 2559883002: fixes #28032, await in cascade (Closed)
Patch Set: Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: pkg/dev_compiler/test/codegen/language/await_in_cascade_test.dart
diff --git a/pkg/dev_compiler/test/codegen/language/await_in_cascade_test.dart b/pkg/dev_compiler/test/codegen/language/await_in_cascade_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..e9fbcf9bda79decf92d7461c7cedfa2781c6e976
--- /dev/null
+++ b/pkg/dev_compiler/test/codegen/language/await_in_cascade_test.dart
@@ -0,0 +1,15 @@
+// Copyright (c) 2016, 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.
+
+import 'dart:async';
+import 'package:expect/expect.dart';
+
+class C {
+ Future<List<int>> m() async => []..add(await _m());
+ Future<int> _m() async => 42;
+}
+
+main() async {
+ Expect.equals(await new C().m(), 42);
+}

Powered by Google App Engine
This is Rietveld 408576698