Chromium Code Reviews| 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); |