(node: Node)
| 986 | } |
| 987 | |
| 988 | public query(node: Node): SelectorCore[] { |
| 989 | this.ensureSelectors(); |
| 990 | |
| 991 | const match = this.matchSelectors(node); |
| 992 | return match ? match.selectors : []; |
| 993 | } |
| 994 | |
| 995 | getSelectorsVersion() { |
| 996 | // The counters can only go up. So we can return just appVersion + localVersion |
no test coverage detected