(text)
| 4397 | } |
| 4398 | |
| 4399 | function createComment (text) { |
| 4400 | return document.createComment(text) |
| 4401 | } |
| 4402 | |
| 4403 | function insertBefore (parentNode, newNode, referenceNode) { |
| 4404 | parentNode.insertBefore(newNode, referenceNode); |
nothing calls this directly
no outgoing calls
no test coverage detected