| Index: pkg/utf/lib/utf.dart
|
| diff --git a/pkg/utf/lib/utf.dart b/pkg/utf/lib/utf.dart
|
| index 102899065f787b42baf69bf499e6b5be36d54b8a..30d5db52d4af659c4322dbbb650942286f998396 100644
|
| --- a/pkg/utf/lib/utf.dart
|
| +++ b/pkg/utf/lib/utf.dart
|
| @@ -11,9 +11,15 @@ library utf;
|
| import "dart:async";
|
| import "dart:collection";
|
|
|
| -part "constants.dart";
|
| -part "list_range.dart";
|
| -part "utf_stream.dart";
|
| -part "utf8.dart";
|
| -part "utf16.dart";
|
| -part "utf32.dart";
|
| +import "src/constants.dart";
|
| +import 'src/utf_16_code_unit_decoder.dart';
|
| +import 'src/list_range.dart';
|
| +import 'src/util.dart';
|
| +
|
| +export 'src/constants.dart';
|
| +export 'src/utf_16_code_unit_decoder.dart';
|
| +
|
| +part "src/utf/utf_stream.dart";
|
| +part "src/utf/utf8.dart";
|
| +part "src/utf/utf16.dart";
|
| +part "src/utf/utf32.dart";
|
|
|