Home
last modified time | relevance | path

Searched refs:commentNode (Results 1 – 5 of 5) sorted by relevance

/third_party/parse5/packages/parse5/lib/tree-adapters/
Ddefault.js177 exports.getCommentNodeContent = function(commentNode) { argument
178 return commentNode.data;
/third_party/parse5/packages/parse5/lib/extensions/location-info/
Dparser-mixin.js176 const commentNode = children[children.length - 1];
178 this.treeAdapter.setNodeSourceCodeLocation(commentNode, token.location);
/third_party/parse5/packages/parse5-htmlparser2-tree-adapter/lib/
Dindex.js304 exports.getCommentNodeContent = function(commentNode) { argument
305 return commentNode.data;
/third_party/parse5/packages/parse5/docs/tree-adapter/
Dinterface.md195 ▸ **getCommentNodeContent**(commentNode: *CommentNode*): `string`
203 | commentNode | CommentNode | Comment node. |
/third_party/parse5/packages/parse5/lib/parser/
Dindex.js603 const commentNode = this.treeAdapter.createCommentNode(token.data);
605 this.treeAdapter.appendChild(parent, commentNode);