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

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

Issue 23926011: Rewrite Futures. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove chained future cycle test. Created 7 years, 3 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
Index: sdk/lib/async/zone.dart
diff --git a/sdk/lib/async/zone.dart b/sdk/lib/async/zone.dart
index 9be85d1053b5ea6cc2f49decfe9611a5e5209940..d4c6acdf2ac8c75ed47459bae21b47284c5be388 100644
--- a/sdk/lib/async/zone.dart
+++ b/sdk/lib/async/zone.dart
@@ -341,8 +341,9 @@ class _WaitForCompletionZone extends _ZoneBase {
_WaitForCompletionZone(_Zone parentZone, this._onDone) : super(parentZone);
/**
- * Runs the given function asynchronously. Executes the [_onDone] callback
- * when the zone is done.
+ * Runs the given function.
+ *
+ * Executes the [_onDone] callback when the zone is done.
Lasse Reichstein Nielsen 2013/09/10 12:03:53 Return type is "dynamic"?
floitsch 2013/09/10 17:19:14 Done.
*/
runWaitForCompletion(void f()) {
return this._runUnguarded(f);

Powered by Google App Engine
This is Rietveld 408576698