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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 part 'io_sink.dart'; | 229 part 'io_sink.dart'; |
230 part 'io_service.dart'; | 230 part 'io_service.dart'; |
231 part 'link.dart'; | 231 part 'link.dart'; |
232 part 'platform.dart'; | 232 part 'platform.dart'; |
233 part 'platform_impl.dart'; | 233 part 'platform_impl.dart'; |
234 part 'process.dart'; | 234 part 'process.dart'; |
235 part 'service_object.dart'; | 235 part 'service_object.dart'; |
236 part 'socket.dart'; | 236 part 'socket.dart'; |
237 part 'stdio.dart'; | 237 part 'stdio.dart'; |
238 part 'string_transformer.dart'; | 238 part 'string_transformer.dart'; |
239 part 'timer_impl.dart'; | |
240 part 'secure_socket.dart'; | 239 part 'secure_socket.dart'; |
241 part 'secure_server_socket.dart'; | 240 part 'secure_server_socket.dart'; |
242 part 'websocket.dart'; | 241 part 'websocket.dart'; |
243 part 'websocket_impl.dart'; | 242 part 'websocket_impl.dart'; |
OLD | NEW |