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, |
(...skipping 23 matching lines...) Expand all Loading... |
34 part 'file_impl.dart'; | 34 part 'file_impl.dart'; |
35 part 'file_system_entity.dart'; | 35 part 'file_system_entity.dart'; |
36 part 'http.dart'; | 36 part 'http.dart'; |
37 part 'http_headers.dart'; | 37 part 'http_headers.dart'; |
38 part 'http_impl.dart'; | 38 part 'http_impl.dart'; |
39 part 'http_parser.dart'; | 39 part 'http_parser.dart'; |
40 part 'http_session.dart'; | 40 part 'http_session.dart'; |
41 part 'http_utils.dart'; | 41 part 'http_utils.dart'; |
42 part 'io_sink.dart'; | 42 part 'io_sink.dart'; |
43 part 'mime_multipart_parser.dart'; | 43 part 'mime_multipart_parser.dart'; |
| 44 part 'options.dart'; |
44 part 'path.dart'; | 45 part 'path.dart'; |
45 part 'path_impl.dart'; | 46 part 'path_impl.dart'; |
46 part 'platform.dart'; | 47 part 'platform.dart'; |
47 part 'platform_impl.dart'; | 48 part 'platform_impl.dart'; |
48 part 'process.dart'; | 49 part 'process.dart'; |
49 part 'socket.dart'; | 50 part 'socket.dart'; |
50 part 'stdio.dart'; | 51 part 'stdio.dart'; |
51 part 'string_transformer.dart'; | 52 part 'string_transformer.dart'; |
52 part 'timer_impl.dart'; | 53 part 'timer_impl.dart'; |
53 part 'secure_socket.dart'; | 54 part 'secure_socket.dart'; |
54 part 'secure_server_socket.dart'; | 55 part 'secure_server_socket.dart'; |
55 part 'websocket.dart'; | 56 part 'websocket.dart'; |
56 part 'websocket_impl.dart'; | 57 part 'websocket_impl.dart'; |
OLD | NEW |