| Index: tool/input_sdk/lib/core/string.dart
|
| diff --git a/tool/input_sdk/lib/core/string.dart b/tool/input_sdk/lib/core/string.dart
|
| index a36fbc5e496bd0b27fac27fe2e4ca6ab0f5835ae..39641df87e5439b414095eed8f9d017a9d4b0d71 100644
|
| --- a/tool/input_sdk/lib/core/string.dart
|
| +++ b/tool/input_sdk/lib/core/string.dart
|
| @@ -602,7 +602,7 @@ abstract class String implements Comparable<String>, Pattern {
|
| /**
|
| * The runes (integer Unicode code points) of a [String].
|
| */
|
| -class Runes extends IterableBase<int> {
|
| +class Runes extends Iterable<int> {
|
| final String string;
|
| Runes(this.string);
|
|
|
|
|