(data, start, end, place)
| 4851 | * @param {InsertionPlace=} place explicit insertion place |
| 4852 | */ |
| 4853 | const insertComment = (data, start, end, place) => { |
| 4854 | const p = place || appropriatePlace(); |
| 4855 | insertAtPlace(p, { type: NodeType.Comment, data, start, end }); |
| 4856 | }; |
| 4857 | |
| 4858 | const insertHtmlElement = ( |
| 4859 | /** @type {string} */ tagName, |
no test coverage detected