| Index: sdk/lib/_internal/compiler/js_lib/convert_patch.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/js_lib/convert_patch.dart (revision 43026)
|
| +++ sdk/lib/_internal/compiler/js_lib/convert_patch.dart (working copy)
|
| @@ -400,4 +400,11 @@
|
| Converter<List<int>,dynamic> fuse(Converter<String, dynamic> next) {
|
| return super.fuse(next);
|
| }
|
| +
|
| + // Currently not intercepting UTF8 decoding.
|
| + @patch
|
| + static String _convertIntercepted(bool allowMalformed, List<int> codeUnits,
|
| + int start, int end) {
|
| + return null; // This call was not intercepted.
|
| + }
|
| }
|
|
|