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

Side by Side Diff: sdk/lib/async/async.dart

Issue 51003002: Update headings to use sentence case. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 asynchronous programming in Dart, see the 9 * For an introduction to asynchronous programming in Dart, 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 * 12 *
13 * ## Other Resources 13 * ## Other resources
14 * 14 *
15 * * [Using Future Based APIs] 15 * * [Using Future Based APIs]
16 * (https://www.dartlang.org/articles/using-future-based-apis/): A first look at 16 * (https://www.dartlang.org/articles/using-future-based-apis/): A first look at
17 * Futures and how to use them to write asynchronous Dart code. 17 * Futures and how to use them to write asynchronous Dart code.
18 * 18 *
19 * * [Futures and Error Handling] 19 * * [Futures and Error Handling]
20 * (https://www.dartlang.org/articles/futures-and-error-handling/): Everything 20 * (https://www.dartlang.org/articles/futures-and-error-handling/): Everything
21 * you wanted to know about handling errors and exceptions when working with 21 * you wanted to know about handling errors and exceptions when working with
22 * Futures (but were afraid to ask). 22 * Futures (but were afraid to ask).
23 * 23 *
(...skipping 16 matching lines...) Expand all
40 part 'future.dart'; 40 part 'future.dart';
41 part 'future_impl.dart'; 41 part 'future_impl.dart';
42 part 'schedule_microtask.dart'; 42 part 'schedule_microtask.dart';
43 part 'stream.dart'; 43 part 'stream.dart';
44 part 'stream_controller.dart'; 44 part 'stream_controller.dart';
45 part 'stream_impl.dart'; 45 part 'stream_impl.dart';
46 part 'stream_pipe.dart'; 46 part 'stream_pipe.dart';
47 part 'stream_transformers.dart'; 47 part 'stream_transformers.dart';
48 part 'timer.dart'; 48 part 'timer.dart';
49 part 'zone.dart'; 49 part 'zone.dart';
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/patch_parser.dart ('k') | sdk/lib/async/schedule_microtask.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698