(text)
| 4391 | } |
| 4392 | |
| 4393 | function createComment (text) { |
| 4394 | return document.createComment(text) |
| 4395 | } |
| 4396 | |
| 4397 | function insertBefore (parentNode, newNode, referenceNode) { |
| 4398 | parentNode.insertBefore(newNode, referenceNode); |
nothing calls this directly
no outgoing calls
no test coverage detected