(root, property)
| 431 | } |
| 432 | |
| 433 | resolveProperty(root, property) { |
| 434 | if (this.reactivity.isTracking) this.reactivity.trackProperty(root, property); |
| 435 | return this.#flatGet(root, property, (root, property) => root[property]) |
| 436 | } |
| 437 | |
| 438 | /** |
| 439 | * Set a property on an object and notify the reactivity system. |
no test coverage detected