(root, property)
| 2440 | } |
| 2441 | } |
| 2442 | resolveProperty(root, property) { |
| 2443 | if (this.reactivity.isTracking) this.reactivity.trackProperty(root, property); |
| 2444 | return this.#flatGet(root, property, (root2, property2) => root2[property2]); |
| 2445 | } |
| 2446 | /** |
| 2447 | * Set a property on an object and notify the reactivity system. |
| 2448 | * @param {Object} obj - DOM element or plain JS object |
no test coverage detected