| 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 * The IO library is used for Dart server applications, | 6 * The IO library is used for Dart server applications, |
| 7 * which run on a stand-alone Dart VM from the command line. | 7 * which run on a stand-alone Dart VM from the command line. |
| 8 * *This library does not work in browser based applications.* | 8 * *This library does not work in browser based applications.* |
| 9 * | 9 * |
| 10 * This library allows you to work with files, directories, | 10 * This library allows you to work with files, directories, |
| 11 * sockets, processes, HTTP servers and clients, and more. | 11 * sockets, processes, HTTP servers and clients, and more. |
| 12 */ | 12 */ |
| 13 library dart.io; | 13 library dart.io; |
| 14 | 14 |
| 15 import 'dart:async'; | 15 import 'dart:async'; |
| 16 import 'dart:collection' show Queue; |
| 16 import 'dart:crypto'; | 17 import 'dart:crypto'; |
| 17 import 'dart:isolate'; | 18 import 'dart:isolate'; |
| 18 import 'dart:math'; | 19 import 'dart:math'; |
| 19 import 'dart:uri'; | 20 import 'dart:uri'; |
| 20 import 'dart:utf'; | 21 import 'dart:utf'; |
| 21 import 'dart:scalarlist'; | 22 import 'dart:scalarlist'; |
| 22 | 23 |
| 23 part 'base64.dart'; | 24 part 'base64.dart'; |
| 24 part 'buffer_list.dart'; | 25 part 'buffer_list.dart'; |
| 25 part 'chunked_stream.dart'; | 26 part 'chunked_stream.dart'; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 48 part 'socket.dart'; | 49 part 'socket.dart'; |
| 49 part 'socket_stream_impl.dart'; | 50 part 'socket_stream_impl.dart'; |
| 50 part 'stdio.dart'; | 51 part 'stdio.dart'; |
| 51 part 'stream_util.dart'; | 52 part 'stream_util.dart'; |
| 52 part 'string_stream.dart'; | 53 part 'string_stream.dart'; |
| 53 part 'timer_impl.dart'; | 54 part 'timer_impl.dart'; |
| 54 part 'secure_socket.dart'; | 55 part 'secure_socket.dart'; |
| 55 part 'secure_server_socket.dart'; | 56 part 'secure_server_socket.dart'; |
| 56 part 'websocket.dart'; | 57 part 'websocket.dart'; |
| 57 part 'websocket_impl.dart'; | 58 part 'websocket_impl.dart'; |
| OLD | NEW |