| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * Support for asynchronous programming, | 6 * Support for asynchronous programming, |
| 7 * with classes such as Future and Stream. | 7 * with classes such as Future and Stream. |
| 8 * | 8 * |
| 9 * For an introduction to using dart:async, see the | 9 * For an introduction to using dart:async, see the |
| 10 * [dart:async section of the language tour] | 10 * [dart:async section of the language tour] |
| 11 * (https://www.dartlang.org/docs/dart-up-and-running/contents/ch03.html#ch03-as
ynchronous-programming). | 11 * (https://www.dartlang.org/docs/dart-up-and-running/contents/ch03.html#ch03-as
ynchronous-programming). |
| 12 * Also see | 12 * Also see |
| 13 * [articles](https://www.dartlang.org/articles/) | 13 * [articles](https://www.dartlang.org/articles/) |
| 14 * such as | 14 * such as |
| 15 * [Using Future Based APIs] | 15 * [Using Future Based APIs] |
| 16 * (https://www.dartlang.org/articles/using-future-based-apis/). | 16 * (https://www.dartlang.org/articles/using-future-based-apis/). |
| 17 */ | 17 */ |
| 18 library dart.async; | 18 library dart.async; |
| 19 | 19 |
| 20 import "dart:collection"; | 20 import "dart:collection"; |
| 21 import "dart:_collection-dev" show deprecated; | 21 import "dart:_collection-dev" show deprecated, printToZone, printToConsole; |
| 22 | 22 |
| 23 part 'async_error.dart'; | 23 part 'async_error.dart'; |
| 24 part 'broadcast_stream_controller.dart'; | 24 part 'broadcast_stream_controller.dart'; |
| 25 part 'deferred_load.dart'; | 25 part 'deferred_load.dart'; |
| 26 part 'event_loop.dart'; | 26 part 'event_loop.dart'; |
| 27 part 'future.dart'; | 27 part 'future.dart'; |
| 28 part 'future_impl.dart'; | 28 part 'future_impl.dart'; |
| 29 part 'stream.dart'; | 29 part 'stream.dart'; |
| 30 part 'stream_controller.dart'; | 30 part 'stream_controller.dart'; |
| 31 part 'stream_impl.dart'; | 31 part 'stream_impl.dart'; |
| 32 part 'stream_pipe.dart'; | 32 part 'stream_pipe.dart'; |
| 33 part 'stream_transformers.dart'; | 33 part 'stream_transformers.dart'; |
| 34 part 'timer.dart'; | 34 part 'timer.dart'; |
| 35 part 'zone.dart'; | 35 part 'zone.dart'; |
| OLD | NEW |