Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1616)

Unified Diff: tools/dom/templates/html/impl/impl_Element.darttemplate

Issue 11788023: Type check fixes for Dartium tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/dom/templates/html/impl/impl_Element.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
index 61a2cb32378a5001ef155fad9cc812a4d3817722..9fff3a88b089f67abcd8edf5468f331f8d89f949 100644
--- a/tools/dom/templates/html/impl/impl_Element.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
@@ -66,7 +66,7 @@ class _ChildrenElementList implements List {
}
Iterable<Element> where(bool f(Element element))
- => new WhereIterable<Element>(this, f);
+ => new WhereIterable(this, f);
bool get isEmpty {
return _element.$dom_firstElementChild == null;
@@ -249,7 +249,7 @@ class _FrozenElementList implements List {
}
Iterable<Element> where(bool f(Element element))
- => new WhereIterable<Element>(this, f);
+ => new WhereIterable(this, f);
bool every(bool f(Element element)) {
for(Element element in this) {

Powered by Google App Engine
This is Rietveld 408576698