OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 * Converters for JSON and UTF-8, as well as support for creating additional | 6 * Converters for JSON and UTF-8, as well as support for creating additional |
7 * converters. | 7 * converters. |
8 */ | 8 */ |
9 library dart.convert; | 9 library dart.convert; |
10 | 10 |
11 import 'dart:async'; | 11 import 'dart:async'; |
12 import 'dart:json' as OLD_JSON_LIB; | 12 import 'dart:json' as OLD_JSON_LIB; |
13 | 13 |
14 part 'ascii.dart'; | 14 part 'ascii.dart'; |
15 part 'byte_conversion.dart'; | 15 part 'byte_conversion.dart'; |
16 part 'chunked_conversion.dart'; | 16 part 'chunked_conversion.dart'; |
17 part 'codec.dart'; | 17 part 'codec.dart'; |
18 part 'converter.dart'; | 18 part 'converter.dart'; |
19 part 'encoding.dart'; | 19 part 'encoding.dart'; |
| 20 part 'html_escape.dart'; |
20 part 'json.dart'; | 21 part 'json.dart'; |
21 part 'latin1.dart'; | 22 part 'latin1.dart'; |
22 part 'line_splitter.dart'; | 23 part 'line_splitter.dart'; |
23 part 'string_conversion.dart'; | 24 part 'string_conversion.dart'; |
24 part 'utf.dart'; | 25 part 'utf.dart'; |
OLD | NEW |