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

Side by Side Diff: pkg/utf/lib/utf.dart

Issue 418433003: pkg/utf: fixed layout, added todos, updated docs and homepage pubspec links (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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
« no previous file with comments | « pkg/utf/lib/src/util.dart ('k') | pkg/utf/lib/utf16.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) 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 * Support for encoding and decoding Unicode characters in UTF-8, UTF-16, and 6 * Support for encoding and decoding Unicode characters in UTF-8, UTF-16, and
7 * UTF-32. 7 * UTF-32.
8 */ 8 */
9 library utf; 9 library utf;
10 10
11 import "dart:async"; 11 import "dart:async";
12 import "dart:collection"; 12 import "dart:collection";
13 13
14 part "constants.dart"; 14 import "src/constants.dart";
15 part "list_range.dart"; 15 import 'src/utf_16_code_unit_decoder.dart';
16 part "utf_stream.dart"; 16 import 'src/list_range.dart';
17 part "utf8.dart"; 17 import 'src/util.dart';
18 part "utf16.dart"; 18
19 part "utf32.dart"; 19 export 'src/constants.dart';
20 export 'src/utf_16_code_unit_decoder.dart';
21
22 part "src/utf/utf_stream.dart";
23 part "src/utf/utf8.dart";
24 part "src/utf/utf16.dart";
25 part "src/utf/utf32.dart";
OLDNEW
« no previous file with comments | « pkg/utf/lib/src/util.dart ('k') | pkg/utf/lib/utf16.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698