({ el, anchor }: VNode)
| 588 | } |
| 589 | |
| 590 | const removeStaticNode = ({ el, anchor }: VNode) => { |
| 591 | let next |
| 592 | while (el && el !== anchor) { |
| 593 | next = hostNextSibling(el) |
| 594 | hostRemove(el) |
| 595 | el = next |
| 596 | } |
| 597 | hostRemove(anchor!) |
| 598 | } |
| 599 | |
| 600 | const processElement = ( |
| 601 | n1: VNode | null, |
no outgoing calls
no test coverage detected