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

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

Issue 2694373003: Normalize UriData.parse result. (Closed)
Patch Set: Address comments. Fix bug. Created 3 years, 10 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
« no previous file with comments | « sdk/lib/convert/base64.dart ('k') | sdk/lib/core/uri.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 * 6 *
7 * Encoders and decoders for converting between different data representations, 7 * Encoders and decoders for converting between different data representations,
8 * including JSON and UTF-8. 8 * including JSON and UTF-8.
9 * 9 *
10 * In addition to converters for common data representations, this library 10 * In addition to converters for common data representations, this library
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 * stdout.writeln(line); 48 * stdout.writeln(line);
49 * }); 49 * });
50 * 50 *
51 * See the documentation for the [Codec] and [Converter] classes 51 * See the documentation for the [Codec] and [Converter] classes
52 * for information about creating your own converters. 52 * for information about creating your own converters.
53 */ 53 */
54 library dart.convert; 54 library dart.convert;
55 55
56 import 'dart:async'; 56 import 'dart:async';
57 import 'dart:typed_data'; 57 import 'dart:typed_data';
58 import 'dart:_internal' show parseHexByte;
58 59
59 part 'ascii.dart'; 60 part 'ascii.dart';
60 part 'base64.dart'; 61 part 'base64.dart';
61 part 'byte_conversion.dart'; 62 part 'byte_conversion.dart';
62 part 'chunked_conversion.dart'; 63 part 'chunked_conversion.dart';
63 part 'codec.dart'; 64 part 'codec.dart';
64 part 'converter.dart'; 65 part 'converter.dart';
65 part 'encoding.dart'; 66 part 'encoding.dart';
66 part 'html_escape.dart'; 67 part 'html_escape.dart';
67 part 'json.dart'; 68 part 'json.dart';
68 part 'latin1.dart'; 69 part 'latin1.dart';
69 part 'line_splitter.dart'; 70 part 'line_splitter.dart';
70 part 'string_conversion.dart'; 71 part 'string_conversion.dart';
71 part 'utf.dart'; 72 part 'utf.dart';
OLDNEW
« no previous file with comments | « sdk/lib/convert/base64.dart ('k') | sdk/lib/core/uri.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698