Chromium Code Reviews| Index: corelib/src/future.dart |
| diff --git a/corelib/src/future.dart b/corelib/src/future.dart |
| index 36f9378fe1bf3b45fed628d523f961121c16fd95..c1d3b39f9867f5c72f4f0704df150dcfe15173ba 100644 |
| --- a/corelib/src/future.dart |
| +++ b/corelib/src/future.dart |
| @@ -28,6 +28,8 @@ |
| * 4. if the future failed, and at least one handler was registered with |
| * [then], and no handler registered with [handleException] returned |
| * [:true:], then the exception is thrown. |
| + * |
| + * Use a [Completer] to simplify working with futures. |
|
Siggi Cherem (dart-lang)
2012/06/06 22:28:44
rather than simplify, I'd say to actually create t
|
| */ |
| interface Future<T> default FutureImpl<T> { |