Index: sdk/lib/html/templates/html/impl/impl_Node.darttemplate |
diff --git a/sdk/lib/html/templates/html/impl/impl_Node.darttemplate b/sdk/lib/html/templates/html/impl/impl_Node.darttemplate |
index cf46de298a9c03b81ab2dcc38389caf696cb6064..795eee65bc8cb3332d240208f7baa49c965155aa 100644 |
--- a/sdk/lib/html/templates/html/impl/impl_Node.darttemplate |
+++ b/sdk/lib/html/templates/html/impl/impl_Node.darttemplate |
@@ -58,18 +58,18 @@ $endif |
// TODO(jacobr): We can implement these methods much more efficiently by |
// looking up the nodeList only once instead of once per iteration. |
- bool contains(Node element) => _Collections.contains(this, element); |
+ bool contains(Node element) => Collections.contains(this, element); |
- void forEach(void f(Node element)) => _Collections.forEach(this, f); |
+ void forEach(void f(Node element)) => Collections.forEach(this, f); |
- Collection map(f(Node element)) => _Collections.map(this, [], f); |
+ Collection map(f(Node element)) => Collections.map(this, [], f); |
Collection<Node> filter(bool f(Node element)) => |
- _Collections.filter(this, <Node>[], f); |
+ Collections.filter(this, <Node>[], f); |
- bool every(bool f(Node element)) => _Collections.every(this, f); |
+ bool every(bool f(Node element)) => Collections.every(this, f); |
- bool some(bool f(Node element)) => _Collections.some(this, f); |
+ bool some(bool f(Node element)) => Collections.some(this, f); |
bool get isEmpty => this.length == 0; |