(n1, n2, container, anchor)
| 4735 | } |
| 4736 | }; |
| 4737 | const processCommentNode = (n1, n2, container, anchor) => { |
| 4738 | if (n1 == null) { |
| 4739 | hostInsert( |
| 4740 | n2.el = hostCreateComment(n2.children || ""), |
| 4741 | container, |
| 4742 | anchor |
| 4743 | ); |
| 4744 | } else { |
| 4745 | n2.el = n1.el; |
| 4746 | } |
| 4747 | }; |
| 4748 | const mountStaticNode = (n2, container, anchor, namespace) => { |
| 4749 | [n2.el, n2.anchor] = hostInsertStaticContent( |
| 4750 | n2.children, |
no outgoing calls
no test coverage detected