* 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)
| 452 | * @param {Object} obj - The mutated object |
| 453 | */ |
| 454 | notifyMutation(obj) { |
| 455 | this.reactivity.notifyProperty(obj); |
| 456 | } |
| 457 | |
| 458 | morph(elt, content) { |
| 459 | this.#morphEngine.morph(elt, content, { |
no test coverage detected