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

Unified Diff: pkg/utf/lib/src/utf/utf_stream.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/utf/lib/src/utf/utf8.dart ('k') | pkg/utf/lib/src/utf_16_code_unit_decoder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/utf/lib/src/utf/utf_stream.dart
diff --git a/pkg/utf/lib/utf_stream.dart b/pkg/utf/lib/src/utf/utf_stream.dart
similarity index 98%
rename from pkg/utf/lib/utf_stream.dart
rename to pkg/utf/lib/src/utf/utf_stream.dart
index bb36dca22368ca4f9e83a0ddbebb78813b085431..2b460d01e9123e55336aa078e0dc5c8537a7eb70 100644
--- a/pkg/utf/lib/utf_stream.dart
+++ b/pkg/utf/lib/src/utf/utf_stream.dart
@@ -205,7 +205,7 @@ class Utf8EncoderTransformer extends _StringEncoder {
List<int> _processString(String string) {
var bytes = [];
int pos = 0;
- List<int> codepoints = _utf16CodeUnitsToCodepoints(string.codeUnits);
+ List<int> codepoints = utf16CodeUnitsToCodepoints(string.codeUnits);
int length = codepoints.length;
for (int i = 0; i < length; i++) {
int additionalBytes;
« no previous file with comments | « pkg/utf/lib/src/utf/utf8.dart ('k') | pkg/utf/lib/src/utf_16_code_unit_decoder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698