Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(402)

Side by Side Diff: sdk/lib/convert/convert.dart

Issue 23492002: adding HtmlEscape to dart:convert (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: documentation TODOs Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698