| Index: tools/dom/src/CssClassSet.dart
|
| diff --git a/tools/dom/src/CssClassSet.dart b/tools/dom/src/CssClassSet.dart
|
| index e1dce2381dcc5e60a5ad7fcb984b4c1396efabd4..d0181087412e200f23a69e0fbcc250636c5d48d4 100644
|
| --- a/tools/dom/src/CssClassSet.dart
|
| +++ b/tools/dom/src/CssClassSet.dart
|
| @@ -50,7 +50,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);
|
|
|
| @@ -58,7 +58,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)) {
|
|
|