Clang: Add symbols collector

Change-Id: I64c25eef8eaa6cc6c3ff09d41866972b6c7248d0
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Marco Bubke
2017-07-24 14:55:51 +02:00
parent 8640ef1927
commit f0e00a8c25
26 changed files with 957 additions and 162 deletions

View File

@@ -104,10 +104,10 @@ public:
clang::tooling::ClangTool createTool() const;
private:
RefactoringCompilationDatabase compilationDatabase;
std::vector<FileContent> fileContents;
std::vector<std::string> sourceFilePaths;
std::vector<UnsavedFileContent> unsavedFileContents;
RefactoringCompilationDatabase m_compilationDatabase;
std::vector<FileContent> m_fileContents;
std::vector<std::string> m_sourceFilePaths;
std::vector<UnsavedFileContent> m_unsavedFileContents;
};
} // namespace ClangBackEnd