(elt, content)
| 2469 | this.reactivity.notifyProperty(obj); |
| 2470 | } |
| 2471 | morph(elt, content) { |
| 2472 | this.#morphEngine.morph(elt, content, { |
| 2473 | beforeNodeRemoved: (node) => { |
| 2474 | if (node.nodeType === 1) this.cleanup(node); |
| 2475 | }, |
| 2476 | afterNodeAdded: (node) => { |
| 2477 | if (node.nodeType === 1) this.processNode(node); |
| 2478 | }, |
| 2479 | afterNodeMorphed: (node) => { |
| 2480 | if (node.nodeType === 1) this.processNode(node); |
| 2481 | } |
| 2482 | }); |
| 2483 | } |
| 2484 | replaceInDom(target, value) { |
| 2485 | this.implicitLoop(target, (elt) => { |
| 2486 | var parent = elt.parentElement; |
nothing calls this directly
no test coverage detected