* 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)
| 2467 | * @param {Object} obj - The mutated object |
| 2468 | */ |
| 2469 | notifyMutation(obj) { |
| 2470 | this.reactivity.notifyProperty(obj); |
| 2471 | } |
| 2472 | morph(elt, content) { |
| 2473 | this.#morphEngine.morph(elt, content, { |
| 2474 | beforeNodeRemoved: (node) => { |
no test coverage detected