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

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

Issue 1346133002: Report hint on unmatched show and hide combinators. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Remove line-ending changes. Created 5 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 unified diff | Download patch
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 * Understanding [Future]s and [Stream]s is a prerequisite for 9 * Understanding [Future]s and [Stream]s is a prerequisite for
10 * writing just about any Dart program. 10 * writing just about any Dart program.
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 * Learn how Dart handles the event queue and microtask queue, so you can write 84 * Learn how Dart handles the event queue and microtask queue, so you can write
85 * better asynchronous code with fewer surprises. 85 * better asynchronous code with fewer surprises.
86 * 86 *
87 * * [Asynchronous Unit Testing with Dart] 87 * * [Asynchronous Unit Testing with Dart]
88 * (https://www.dartlang.org/articles/dart-unit-tests/#asynchronous-tests): How 88 * (https://www.dartlang.org/articles/dart-unit-tests/#asynchronous-tests): How
89 * to test asynchronous code. 89 * to test asynchronous code.
90 */ 90 */
91 library dart.async; 91 library dart.async;
92 92
93 import "dart:collection"; 93 import "dart:collection";
94 import "dart:_internal" show deprecated, printToZone, printToConsole, 94 import "dart:_internal" show printToZone, printToConsole,
95 IterableElementError; 95 IterableElementError;
96 96
97 part 'async_error.dart'; 97 part 'async_error.dart';
98 part 'broadcast_stream_controller.dart'; 98 part 'broadcast_stream_controller.dart';
99 part 'deferred_load.dart'; 99 part 'deferred_load.dart';
100 part 'future.dart'; 100 part 'future.dart';
101 part 'future_impl.dart'; 101 part 'future_impl.dart';
102 part 'schedule_microtask.dart'; 102 part 'schedule_microtask.dart';
103 part 'stream.dart'; 103 part 'stream.dart';
104 part 'stream_controller.dart'; 104 part 'stream_controller.dart';
105 part 'stream_impl.dart'; 105 part 'stream_impl.dart';
106 part 'stream_pipe.dart'; 106 part 'stream_pipe.dart';
107 part 'stream_transformers.dart'; 107 part 'stream_transformers.dart';
108 part 'timer.dart'; 108 part 'timer.dart';
109 part 'zone.dart'; 109 part 'zone.dart';
OLDNEW
« no previous file with comments | « sdk/lib/_internal/js_runtime/lib/typed_data_patch.dart ('k') | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698