(root, property)
| 2449 | } |
| 2450 | } |
| 2451 | resolveProperty(root, property) { |
| 2452 | if (this.reactivity.isTracking) this.reactivity.trackProperty(root, property); |
| 2453 | return this.#flatGet(root, property, (root2, property2) => root2[property2]); |
| 2454 | } |
| 2455 | /** |
| 2456 | * Set a property on an object and notify the reactivity system. |
| 2457 | * @param {Object} obj - DOM element or plain JS object |
no test coverage detected