| Index: runtime/lib/string_base.dart
|
| diff --git a/runtime/lib/string_base.dart b/runtime/lib/string_base.dart
|
| index 2a777c2b7a59530f43479b98a8f6310141c8e23e..8b28aaeba8385ecd46dc062207d0dc603a825c9f 100644
|
| --- a/runtime/lib/string_base.dart
|
| +++ b/runtime/lib/string_base.dart
|
| @@ -433,9 +433,7 @@ class _StringBase {
|
| return result;
|
| }
|
|
|
| - Iterable<int> get codeUnits {
|
| - throw new UnimplementedError("String.codeUnits");
|
| - }
|
| + Iterable<int> get codeUnits => new CodeUnits(this);
|
|
|
| Runes get runes => new Runes(this);
|
|
|
|
|