perf(render): precompute # bound text nodes and root nodes in DomProtoView

This commit is contained in:
Tobias Bosch
2015-06-09 11:57:50 -07:00
parent 9cd510abaa
commit 24e647e0f7
3 changed files with 17 additions and 10 deletions

View File

@ -102,7 +102,7 @@ class Html5LibDomAdapter implements DomAdapter {
throw 'not implemented';
}
content(node) {
throw 'not implemented';
return node;
}
firstChild(el) => el is NodeList ? el.first : el.firstChild;