Searched refs:commentNode (Results 1 – 1 of 1) sorted by relevance
16 | { commentNode: undefined; textContent: undefined; hidden: undefined }17 | { commentNode: Node; textContent: string; hidden: boolean };51 const commentNode = doc.createComment(comment); constant52 this.insertAfterIdented(commentNode, insertPoint);53 insertPoint = commentNode;96 const commentNode = el.previousSibling?.previousSibling; constant98 const out = { commentNode: undefined, textContent: undefined, hidden: undefined };100 if (!commentNode) return out;102 const textContent = commentNode.textContent || '';105 if (!(commentNode && commentNode.nodeName == '#comment')) return out;[all …]