(text)
| 7748 | |
| 7749 | //创建一个注释节点 |
| 7750 | function createComment(text) { |
| 7751 | return document.createComment(text) |
| 7752 | } |
| 7753 | |
| 7754 | //插入节点 在referenceNode dom 前面插入一个节点 |
| 7755 | function insertBefore(parentNode, newNode, referenceNode) { |
nothing calls this directly
no outgoing calls
no test coverage detected