Home | History | Annotate | Download | only in AST

Lines Matching refs:COMMENT

1 //===--- CommentVisitor.h - Visitor for Comment subclasses ------*- C++ -*-===//
13 #include "clang/AST/Comment.h"
29 RetTy visit(PTR(Comment) C) {
34 default: llvm_unreachable("Unknown comment kind!");
35 #define ABSTRACT_COMMENT(COMMENT)
36 #define COMMENT(CLASS, PARENT) \
37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS);
40 #undef COMMENT
46 #define ABSTRACT_COMMENT(COMMENT) COMMENT
47 #define COMMENT(CLASS, PARENT) \
51 #undef COMMENT
53 RetTy visitComment(PTR(Comment) C) { return RetTy(); }