| Index: sdk/lib/utf/utf_stream.dart
|
| diff --git a/sdk/lib/utf/utf_stream.dart b/sdk/lib/utf/utf_stream.dart
|
| index ad69c62441330f969b3c9cbcb86caa5f315aa82a..d9149d61fa2775b8a1883bdf982f84a768ff7e81 100644
|
| --- a/sdk/lib/utf/utf_stream.dart
|
| +++ b/sdk/lib/utf/utf_stream.dart
|
| @@ -192,7 +192,7 @@ class Utf8EncoderTransformer extends _StringEncoder {
|
| List<int> _processString(String string) {
|
| var bytes = [];
|
| int pos = 0;
|
| - List<int> codepoints = _utf16CodeUnitsToCodepoints(string.charCodes);
|
| + List<int> codepoints = _utf16CodeUnitsToCodepoints(string.codeUnits);
|
| int length = codepoints.length;
|
| for (int i = 0; i < length; i++) {
|
| int additionalBytes;
|
|
|