| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index 7f3c20b3103a80cf33b84c9a9f9d020ab5f1b9ee..eeb07845355ca91c10e211c8c2b7569d06ab8258 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -30513,7 +30513,7 @@ abstract class CssClassSet implements Set<String> {
|
|
|
| Iterable<String> where(bool f(String element)) => readClasses().where(f);
|
|
|
| - Iterable expand(Iterable f(E element)) => readClasses.expand(f);
|
| + Iterable expand(Iterable f(String element)) => readClasses.expand(f);
|
|
|
| bool every(bool f(String element)) => readClasses().every(f);
|
|
|
| @@ -30521,7 +30521,7 @@ abstract class CssClassSet implements Set<String> {
|
|
|
| bool get isEmpty => readClasses().isEmpty;
|
|
|
| - int get length =>readClasses().length;
|
| + int get length => readClasses().length;
|
|
|
| dynamic reduce(dynamic initialValue,
|
| dynamic combine(dynamic previousValue, String element)) {
|
|
|