| Index: sdk/lib/_internal/compiler/implementation/lib/js_string.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/lib/js_string.dart b/sdk/lib/_internal/compiler/implementation/lib/js_string.dart
|
| index 381a690564ac2c86ee075b4d996308cbc0bd2828..dcb5b4ef98aee34ac33caa11216fccc145b6ff9d 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/lib/js_string.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/lib/js_string.dart
|
| @@ -153,9 +153,7 @@ class JSString implements String {
|
| throw new UnimplementedError("String.codeUnits");
|
| }
|
|
|
| - Iterable<int> get runes {
|
| - throw new UnimplementedError("String.runes");
|
| - }
|
| + Runes get runes => new Runes(this);
|
|
|
| int indexOf(String other, [int start = 0]) {
|
| checkNull(other);
|
|
|