| 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 11 matching lines...) Expand all Loading... |
| 22 #source('base64.dart'); | 22 #source('base64.dart'); |
| 23 #source('buffer_list.dart'); | 23 #source('buffer_list.dart'); |
| 24 #source('chunked_stream.dart'); | 24 #source('chunked_stream.dart'); |
| 25 #source('common.dart'); | 25 #source('common.dart'); |
| 26 #source('directory.dart'); | 26 #source('directory.dart'); |
| 27 #source('directory_impl.dart'); | 27 #source('directory_impl.dart'); |
| 28 #source('eventhandler.dart'); | 28 #source('eventhandler.dart'); |
| 29 #source('file.dart'); | 29 #source('file.dart'); |
| 30 #source('file_impl.dart'); | 30 #source('file_impl.dart'); |
| 31 #source('http.dart'); | 31 #source('http.dart'); |
| 32 #source('http_headers.dart'); |
| 32 #source('http_impl.dart'); | 33 #source('http_impl.dart'); |
| 33 #source('http_parser.dart'); | 34 #source('http_parser.dart'); |
| 34 #source('http_session.dart'); | 35 #source('http_session.dart'); |
| 35 #source('http_utils.dart'); | 36 #source('http_utils.dart'); |
| 36 #source('input_stream.dart'); | 37 #source('input_stream.dart'); |
| 37 #source('list_stream.dart'); | 38 #source('list_stream.dart'); |
| 38 #source('list_stream_impl.dart'); | 39 #source('list_stream_impl.dart'); |
| 39 #source('mime_multipart_parser.dart'); | 40 #source('mime_multipart_parser.dart'); |
| 40 #source('output_stream.dart'); | 41 #source('output_stream.dart'); |
| 41 #source('path.dart'); | 42 #source('path.dart'); |
| 42 #source('path_impl.dart'); | 43 #source('path_impl.dart'); |
| 43 #source('platform.dart'); | 44 #source('platform.dart'); |
| 44 #source('platform_impl.dart'); | 45 #source('platform_impl.dart'); |
| 45 #source('process.dart'); | 46 #source('process.dart'); |
| 46 #source('socket.dart'); | 47 #source('socket.dart'); |
| 47 #source('socket_stream_impl.dart'); | 48 #source('socket_stream_impl.dart'); |
| 48 #source('stdio.dart'); | 49 #source('stdio.dart'); |
| 49 #source('stream_util.dart'); | 50 #source('stream_util.dart'); |
| 50 #source('string_stream.dart'); | 51 #source('string_stream.dart'); |
| 51 #source('timer_impl.dart'); | 52 #source('timer_impl.dart'); |
| 52 #source('secure_socket.dart'); | 53 #source('secure_socket.dart'); |
| 53 #source('secure_server_socket.dart'); | 54 #source('secure_server_socket.dart'); |
| 54 #source('websocket.dart'); | 55 #source('websocket.dart'); |
| 55 #source('websocket_impl.dart'); | 56 #source('websocket_impl.dart'); |
| OLD | NEW |