Searched refs:CommentNode (Results 1 – 4 of 4) sorted by relevance
3 class CommentNode<CommentNode base, bit abstract = 0> : ASTNode {4 CommentNode Base = base;8 def Comment : CommentNode<?, 1>;9 def InlineContentComment : CommentNode<Comment, 1>;10 def TextComment : CommentNode<InlineContentComment>;11 def InlineCommandComment : CommentNode<InlineContentComment>;12 def HTMLTagComment : CommentNode<InlineContentComment, 1>;13 def HTMLStartTagComment : CommentNode<HTMLTagComment>;14 def HTMLEndTagComment : CommentNode<HTMLTagComment>;16 def BlockContentComment : CommentNode<Comment, 1>;[all …]
31 class CommentNode extends AbstractSimpleNode { class35 CommentNode(String text) { in CommentNode() method in CommentNode
55 if (node instanceof CommentNode) { in parentAndExtractComments()57 commentList.add(((CommentNode)node).text()); in parentAndExtractComments()
129 return new CommentNode(izer.sval); in item()