diff options
author | Alexander Kornienko <alexfh@google.com> | 2012-07-31 09:37:40 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2012-07-31 09:37:40 +0000 |
commit | 171af64ef10ae816ed2a4f15f5d17aca1d71769f (patch) | |
tree | 975b767431050b8c1bcc59f42d176f6007e87988 /include/clang/Frontend/FrontendActions.h | |
parent | ff104a12d61d34af67f12a7a966847c821d7afa8 (diff) |
Added -ast-list option to dump filterable AST decl node names.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161040 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/FrontendActions.h')
-rw-r--r-- | include/clang/Frontend/FrontendActions.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/clang/Frontend/FrontendActions.h b/include/clang/Frontend/FrontendActions.h index 8f7fe87ee6..477ac45a95 100644 --- a/include/clang/Frontend/FrontendActions.h +++ b/include/clang/Frontend/FrontendActions.h @@ -50,6 +50,12 @@ protected: StringRef InFile); }; +class ASTDeclListAction : public ASTFrontendAction { +protected: + virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI, + StringRef InFile); +}; + class ASTDumpXMLAction : public ASTFrontendAction { protected: virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI, |