@returns {NodeList} all elements matching this.css under the root node
()
| 2003 | } |
| 2004 | /** @returns {NodeList} all elements matching this.css under the root node */ |
| 2005 | selectMatches() { |
| 2006 | var root = this._runtime.getRootNode(this.relativeToElement); |
| 2007 | return this._runtime.resolveQuery(root, this.css); |
| 2008 | } |
| 2009 | }; |
| 2010 | var TemplatedQueryElementCollection = class extends ElementCollection { |
| 2011 | constructor(css, relativeToElement, templateParts, runtime2) { |
no test coverage detected