floitsch@google.com
2013-02-15 13:57:18 +00:00
parent ad839e6957
commit 0672317bec
26 changed files with 9 additions and 352 deletions
-2
View File
@@ -46,8 +46,6 @@ abstract class CssClassSet implements Set<String> {
Iterable map(f(String element)) => readClasses().map(f);
Iterable mappedBy(f(String element)) => readClasses().mappedBy(f);
Iterable<String> where(bool f(String element)) => readClasses().where(f);
Iterable expand(Iterable f(String element)) => readClasses.expand(f);
@@ -65,10 +65,6 @@ class _ChildrenElementList implements List {
return IterableMixinWorkaround.mapList(this, f);
}
List mappedBy(f(Element element)) {
return IterableMixinWorkaround.mappedByList(this, f);
}
Iterable<Element> where(bool f(Element element)) {
return IterableMixinWorkaround.where(this, f);
}
@@ -290,10 +286,6 @@ class _FrozenElementList implements List {
return IterableMixinWorkaround.mapList(this, f);
}
List mappedBy(f(Element element)) {
return IterableMixinWorkaround.mappedByList(this, f);
}
Iterable<Element> where(bool f(Element element)) {
return IterableMixinWorkaround.where(this, f);
}
@@ -145,10 +145,6 @@ $endif
return IterableMixinWorkaround.mapList(this, f);
}
List mappedBy(f(Node element)) {
return IterableMixinWorkaround.mappedByList(this, f);
}
Iterable<Node> where(bool f(Node element)) {
return IterableMixinWorkaround.where(this, f);
}
@@ -32,9 +32,6 @@ $endif
Iterable map(f($E element)) =>
IterableMixinWorkaround.mapList(this, f);
List mappedBy(f($E element)) =>
IterableMixinWorkaround.mappedByList(this, f);
Iterable<$E> where(bool f($E element)) =>
IterableMixinWorkaround.where(this, f);