| Index: runtime/lib/string_base.dart
|
| diff --git a/runtime/lib/string_base.dart b/runtime/lib/string_base.dart
|
| index 1f6d9fe7bfd28d5fc6cb0b00bd53f13943978722..c4c62d819e221b3e1dcad260f454a14534aea2fc 100644
|
| --- a/runtime/lib/string_base.dart
|
| +++ b/runtime/lib/string_base.dart
|
| @@ -40,6 +40,10 @@ class _StringBase {
|
|
|
| int charCodeAt(int index) native "String_charCodeAt";
|
|
|
| + int codeUnitAt(int index) {
|
| + return charCodeAt(index);
|
| + }
|
| +
|
| int get length native "String_getLength";
|
|
|
| bool get isEmpty {
|
| @@ -429,6 +433,14 @@ class _StringBase {
|
| return result;
|
| }
|
|
|
| + Iterable<int> get codeUnits {
|
| + throw new UnimplementedError("String.codeUnits");
|
| + }
|
| +
|
| + Iterable<int> get runes {
|
| + throw new UnimplementedError("String.runes");
|
| + }
|
| +
|
| String toUpperCase() native "String_toUpperCase";
|
|
|
| String toLowerCase() native "String_toLowerCase";
|
|
|