(node: Node)
| 259 | return `#${this.id}${wrap(this.combinator)}`; |
| 260 | } |
| 261 | public match(node: Node): boolean { |
| 262 | return node.id === this.id; |
| 263 | } |
| 264 | public lookupSort(sorter: LookupSorter, base?: SelectorCore): void { |
| 265 | sorter.sortById(this.id, base || this); |
| 266 | } |
no outgoing calls
no test coverage detected