| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #source('platform.dart'); | 43 #source('platform.dart'); |
| 44 #source('platform_impl.dart'); | 44 #source('platform_impl.dart'); |
| 45 #source('process.dart'); | 45 #source('process.dart'); |
| 46 #source('socket.dart'); | 46 #source('socket.dart'); |
| 47 #source('socket_stream_impl.dart'); | 47 #source('socket_stream_impl.dart'); |
| 48 #source('stdio.dart'); | 48 #source('stdio.dart'); |
| 49 #source('stream_util.dart'); | 49 #source('stream_util.dart'); |
| 50 #source('string_stream.dart'); | 50 #source('string_stream.dart'); |
| 51 #source('timer_impl.dart'); | 51 #source('timer_impl.dart'); |
| 52 #source('tls_socket.dart'); | 52 #source('tls_socket.dart'); |
| 53 #source('tls_server_socket.dart'); |
| 53 #source('websocket.dart'); | 54 #source('websocket.dart'); |
| 54 #source('websocket_impl.dart'); | 55 #source('websocket_impl.dart'); |
| OLD | NEW |