(root, css)
| 2511 | } |
| 2512 | } |
| 2513 | resolveQuery(root, css) { |
| 2514 | if (this.reactivity.isTracking) this.reactivity.trackQuery(root); |
| 2515 | return root.querySelectorAll(css); |
| 2516 | } |
| 2517 | resolveAttribute(root, property) { |
| 2518 | if (this.reactivity.isTracking) this.reactivity.trackAttribute(root, property); |
| 2519 | return this.#flatGet(root, property, (root2, property2) => root2.getAttribute && root2.getAttribute(property2)); |
no test coverage detected