OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 /** | |
6 * The IO library is used for Dart server applications, | |
7 * which run on a stand-alone Dart VM from the command line. | |
8 * *This library does not work in browser based applications.* | |
9 * | |
10 * This library allows you to work with files, directories, | |
11 * sockets, processes, HTTP servers and clients, and more. | |
12 */ | |
13 #library('dart:io'); | |
14 | |
15 #import('dart:crypto'); | |
16 #import('dart:isolate'); | |
17 #import('dart:math'); | |
18 #import('dart:uri'); | |
19 #import('dart:utf'); | |
20 #import('dart:scalarlist'); | |
21 | |
22 #source('base64.dart'); | |
Søren Gjesse
2012/10/30 09:28:32
Shouldn't we change this to the new syntax and use
Mads Ager (google)
2012/10/30 11:12:40
Yes, but I'd like to postpone that to a separate c
| |
23 #source('buffer_list.dart'); | |
24 #source('chunked_stream.dart'); | |
25 #source('common.dart'); | |
26 #source('directory.dart'); | |
27 #source('directory_impl.dart'); | |
28 #source('eventhandler.dart'); | |
29 #source('file.dart'); | |
30 #source('file_impl.dart'); | |
31 #source('http.dart'); | |
32 #source('http_impl.dart'); | |
33 #source('http_parser.dart'); | |
34 #source('http_session.dart'); | |
35 #source('http_utils.dart'); | |
36 #source('input_stream.dart'); | |
37 #source('list_stream.dart'); | |
38 #source('list_stream_impl.dart'); | |
39 #source('mime_multipart_parser.dart'); | |
40 #source('output_stream.dart'); | |
41 #source('path.dart'); | |
42 #source('path_impl.dart'); | |
43 #source('platform.dart'); | |
44 #source('platform_impl.dart'); | |
45 #source('process.dart'); | |
46 #source('socket.dart'); | |
47 #source('socket_stream_impl.dart'); | |
48 #source('stdio.dart'); | |
49 #source('stream_util.dart'); | |
50 #source('string_stream.dart'); | |
51 #source('timer_impl.dart'); | |
52 #source('websocket.dart'); | |
53 #source('websocket_impl.dart'); | |
OLD | NEW |