Home
last modified time | relevance | path

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

/third_party/node/tools/doc/
DdeprecationCodes.mjs37 const testYAMLComment = (commentNode) => { argument
40 commentNode?.value?.substring(0, 21),
45 throw addMarkdownPathToErrorStack(e, commentNode);
/third_party/parse5/packages/parse5/lib/tree-adapters/
Dinterface.ts22 commentNode: CommentNode; property
105 getCommentNodeContent(commentNode: T['commentNode']): string;
Ddefault.ts269 getCommentNodeContent(commentNode: CommentNode): string {
270 return commentNode.data;
/third_party/parse5/packages/parse5-htmlparser2-tree-adapter/lib/
Dindex.ts248 getCommentNodeContent(commentNode: Comment): string {
249 return commentNode.data;
/third_party/parse5/packages/parse5/lib/parser/
Dindex.ts436 const commentNode = this.treeAdapter.createCommentNode(token.data); constant
438 this.treeAdapter.appendChild(parent, commentNode);
440 this.treeAdapter.setNodeSourceCodeLocation(commentNode, token.location);