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 * File, socket, HTTP, and other I/O support for server applications. | 6 * File, socket, HTTP, and other I/O support for server applications. |
7 * | 7 * |
8 * The I/O library is used for Dart server applications, | 8 * The I/O library is used for Dart server applications, |
9 * which run on a stand-alone Dart VM from the command line. | 9 * which run on a stand-alone Dart VM from the command line. |
10 * *This library does not work in browser-based applications.* | 10 * *This library does not work in browser-based applications.* |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 * tour](https://www.dartlang.org/docs/dart-up-and-running/ch03.html#dartio---io
-for-command-line-apps). | 190 * tour](https://www.dartlang.org/docs/dart-up-and-running/ch03.html#dartio---io
-for-command-line-apps). |
191 * | 191 * |
192 * To learn more about I/O in Dart, refer to the [tutorial about writing | 192 * To learn more about I/O in Dart, refer to the [tutorial about writing |
193 * command-line apps](https://www.dartlang.org/docs/tutorials/cmdline/). | 193 * command-line apps](https://www.dartlang.org/docs/tutorials/cmdline/). |
194 */ | 194 */ |
195 library dart.io; | 195 library dart.io; |
196 | 196 |
197 import 'dart:async'; | 197 import 'dart:async'; |
198 import 'dart:_internal' hide Symbol; | 198 import 'dart:_internal' hide Symbol; |
199 import 'dart:collection' | 199 import 'dart:collection' |
200 show | 200 show HashMap, HashSet, Queue, ListQueue, UnmodifiableMapView; |
201 HashMap, | |
202 HashSet, | |
203 Queue, | |
204 ListQueue, | |
205 LinkedList, | |
206 LinkedListEntry, | |
207 UnmodifiableMapView; | |
208 import 'dart:convert'; | 201 import 'dart:convert'; |
209 import 'dart:developer' hide log; | 202 import 'dart:developer' hide log; |
210 import 'dart:isolate'; | 203 import 'dart:isolate'; |
211 import 'dart:math'; | 204 import 'dart:math'; |
212 import 'dart:typed_data'; | 205 import 'dart:typed_data'; |
213 import 'dart:nativewrappers'; | 206 import 'dart:nativewrappers'; |
214 | 207 |
215 part 'bytes_builder.dart'; | 208 part 'bytes_builder.dart'; |
216 part 'common.dart'; | 209 part 'common.dart'; |
217 part 'crypto.dart'; | 210 part 'crypto.dart'; |
(...skipping 20 matching lines...) Expand all Loading... |
238 part 'secure_server_socket.dart'; | 231 part 'secure_server_socket.dart'; |
239 part 'secure_socket.dart'; | 232 part 'secure_socket.dart'; |
240 part 'security_context.dart'; | 233 part 'security_context.dart'; |
241 part 'service_object.dart'; | 234 part 'service_object.dart'; |
242 part 'socket.dart'; | 235 part 'socket.dart'; |
243 part 'stdio.dart'; | 236 part 'stdio.dart'; |
244 part 'string_transformer.dart'; | 237 part 'string_transformer.dart'; |
245 part 'sync_socket.dart'; | 238 part 'sync_socket.dart'; |
246 part 'websocket.dart'; | 239 part 'websocket.dart'; |
247 part 'websocket_impl.dart'; | 240 part 'websocket_impl.dart'; |
OLD | NEW |