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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 * [tutorial about writing command-line apps] | 194 * [tutorial about writing command-line apps] |
195 * (https://www.dartlang.org/docs/tutorials/io/). | 195 * (https://www.dartlang.org/docs/tutorials/io/). |
196 */ | 196 */ |
197 library dart.io; | 197 library dart.io; |
198 | 198 |
199 import 'dart:async'; | 199 import 'dart:async'; |
200 import 'dart:_internal'; | 200 import 'dart:_internal'; |
201 import 'dart:collection' show HashMap, | 201 import 'dart:collection' show HashMap, |
202 HashSet, | 202 HashSet, |
203 LinkedList, | 203 LinkedList, |
204 LinkedListEntry, | 204 LinkedListEntry; |
205 UnmodifiableMapView; | |
206 import 'dart:convert'; | 205 import 'dart:convert'; |
207 import 'dart:isolate'; | 206 import 'dart:isolate'; |
208 import 'dart:math'; | 207 import 'dart:math'; |
209 import 'dart:typed_data'; | 208 import 'dart:typed_data'; |
210 | 209 |
211 part 'bytes_builder.dart'; | 210 part 'bytes_builder.dart'; |
212 part 'common.dart'; | 211 part 'common.dart'; |
213 part 'crypto.dart'; | 212 part 'crypto.dart'; |
214 part 'data_transformer.dart'; | 213 part 'data_transformer.dart'; |
215 part 'directory.dart'; | 214 part 'directory.dart'; |
(...skipping 15 matching lines...) Expand all Loading... |
231 part 'platform_impl.dart'; | 230 part 'platform_impl.dart'; |
232 part 'process.dart'; | 231 part 'process.dart'; |
233 part 'socket.dart'; | 232 part 'socket.dart'; |
234 part 'stdio.dart'; | 233 part 'stdio.dart'; |
235 part 'string_transformer.dart'; | 234 part 'string_transformer.dart'; |
236 part 'timer_impl.dart'; | 235 part 'timer_impl.dart'; |
237 part 'secure_socket.dart'; | 236 part 'secure_socket.dart'; |
238 part 'secure_server_socket.dart'; | 237 part 'secure_server_socket.dart'; |
239 part 'websocket.dart'; | 238 part 'websocket.dart'; |
240 part 'websocket_impl.dart'; | 239 part 'websocket_impl.dart'; |
OLD | NEW |