(text)
| 4401 | } |
| 4402 | |
| 4403 | function createComment (text) { |
| 4404 | return document.createComment(text) |
| 4405 | } |
| 4406 | |
| 4407 | function insertBefore (parentNode, newNode, referenceNode) { |
| 4408 | parentNode.insertBefore(newNode, referenceNode); |
nothing calls this directly
no outgoing calls
no test coverage detected