(val)
| 2499 | } |
| 2500 | } |
| 2501 | #trackMutation(val) { |
| 2502 | if (this.reactivity.isTracking && val != null && typeof val === "object") { |
| 2503 | this.reactivity.trackProperty(val, "__mutation__"); |
| 2504 | } |
| 2505 | } |
| 2506 | resolveAttribute(root, property) { |
| 2507 | if (this.reactivity.isTracking) this.reactivity.trackAttribute(root, property); |
| 2508 | return this.#flatGet(root, property, (root2, property2) => root2.getAttribute && root2.getAttribute(property2)); |
no test coverage detected