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

Unified Diff: sdk/lib/async/future.dart

Issue 26151002: Rename runAsync to scheduleMicrotask. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add test. Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/async/event_loop.dart ('k') | sdk/lib/async/stream_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/async/future.dart
diff --git a/sdk/lib/async/future.dart b/sdk/lib/async/future.dart
index 63aecaf834cad5623e35d1a1406239f8de91f1a4..fd013f1062244ce6e451d26963ad5043814f28aa 100644
--- a/sdk/lib/async/future.dart
+++ b/sdk/lib/async/future.dart
@@ -91,9 +91,8 @@ abstract class Future<T> {
* Creates a future containing the result of calling [computation]
* asynchronously with [Timer.run].
*
- * if the result of executing [computation] throws, the returned future is
- * completed with the error. If a thrown value is an [AsyncError], it is used
- * directly, instead of wrapping this error again in another [AsyncError].
+ * If the result of executing [computation] throws, the returned future is
+ * completed with the error.
*
* If the returned value is itself a [Future], completion of
* the created future will wait until the returned future completes,
@@ -114,12 +113,36 @@ abstract class Future<T> {
}
/**
+ * Creates a future containing the result of calling [computation]
+ * asynchronously with [scheduleMicrotask].
+ *
+ * If the result of executing [computation] throws, the returned future is
+ * completed with the error.
+ *
+ * If the returned value is itself a [Future], completion of
+ * the created future will wait until the returned future completes,
+ * and will then complete with the same result.
+ *
+ * If a value is returned, it becomes the result of the created future.
+ */
+ factory Future.microtask(computation()) {
+ _Future result = new _Future<T>();
+ scheduleMicrotask(() {
+ try {
+ result._complete(computation());
+ } catch (e, s) {
+ result._completeError(e, s);
+ }
+ });
+ return result;
+ }
+
+ /**
* Creates a future containing the result of immediately calling
* [computation].
*
* If calling [computation] throws, the returned future is completed with the
- * error. If a thrown value is an [AsyncError], it is used
- * directly, instead of wrapping this error again in another [AsyncError].
+ * error.
*
* If the returned value is itself a [Future], completion of
* the created future will wait until the returned future completes,
« no previous file with comments | « sdk/lib/async/event_loop.dart ('k') | sdk/lib/async/stream_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698