diff options
Diffstat (limited to 'clang-tools-extra/clangd/TUScheduler.h')
-rw-r--r-- | clang-tools-extra/clangd/TUScheduler.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clang-tools-extra/clangd/TUScheduler.h b/clang-tools-extra/clangd/TUScheduler.h index d6f530a751d..e02250d6e6f 100644 --- a/clang-tools-extra/clangd/TUScheduler.h +++ b/clang-tools-extra/clangd/TUScheduler.h @@ -10,8 +10,10 @@ #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_TUSCHEDULER_H #include "ClangdUnit.h" +#include "Diagnostics.h" #include "Function.h" #include "GlobalCompilationDatabase.h" +#include "Path.h" #include "Threading.h" #include "index/CanonicalIncludes.h" #include "llvm/ADT/Optional.h" @@ -125,6 +127,11 @@ public: /// Publish() may never run in this case). virtual void onMainAST(PathRef Path, ParsedAST &AST, PublishFn Publish) {} + /// Called whenever the AST fails to build. \p Diags will have the diagnostics + /// that led to failure. + virtual void onFailedAST(PathRef Path, std::vector<Diag> Diags, + PublishFn Publish) {} + /// Called whenever the TU status is updated. virtual void onFileUpdated(PathRef File, const TUStatus &Status) {} }; |