* Notify the reactivity system that an object was mutated in-place. * Call this after operations like push, splice, append, etc. * @param {Object} obj - The mutated object
(obj)
| 2459 | * @param {Object} obj - The mutated object |
| 2460 | */ |
| 2461 | notifyMutation(obj) { |
| 2462 | this.reactivity.notifyProperty(obj); |
| 2463 | } |
| 2464 | morph(elt, content) { |
| 2465 | this.#morphEngine.morph(elt, content, { |
| 2466 | beforeNodeRemoved: (node) => { |
no test coverage detected