| Index: sdk/lib/convert/encoding.dart
|
| diff --git a/sdk/lib/convert/encoding.dart b/sdk/lib/convert/encoding.dart
|
| index d7092bcece977dc0c677b646c416f526e666a4ae..19989fb657350a272bebb925bb3b36309175cc28 100644
|
| --- a/sdk/lib/convert/encoding.dart
|
| +++ b/sdk/lib/convert/encoding.dart
|
| @@ -11,6 +11,9 @@ part of dart.convert;
|
| // consolitate them, we need to remove `Encoding` here.
|
| abstract class Encoding extends Codec<String, List<int>> {
|
| const Encoding();
|
| +
|
| + // TODO(floitsch): should we introduce a StringToByteEncoder and
|
| + // a ByteToStringDecoder so that we have better typing?
|
| }
|
|
|
| // TODO(floitsch): add other encodings, like ASCII and ISO_8859_1.
|
|
|