2016-12-18 05:14:37 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifdef CLANG_TIDY
|
|
|
|
|
|
|
|
#include "../ClangTidy.h"
|
|
|
|
#include "../ClangTidyModule.h"
|
|
|
|
#include "../ClangTidyModuleRegistry.h"
|
|
|
|
#include "ChecksIncludes.inc"
|
2020-07-20 10:50:47 +03:00
|
|
|
#include "external/ExternalIncludes.inc"
|
|
|
|
#ifdef MOZ_CLANG_PLUGIN_ALPHA
|
|
|
|
#include "alpha/AlphaIncludes.inc"
|
|
|
|
#endif
|
2016-12-18 05:14:37 +03:00
|
|
|
|
|
|
|
using namespace clang::ast_matchers;
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
|
|
|
|
|
|
|
class MozillaModule : public ClangTidyModule {
|
|
|
|
public:
|
|
|
|
void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override {
|
|
|
|
#define CHECK(cls, name) CheckFactories.registerCheck<cls>("mozilla-" name);
|
|
|
|
#include "Checks.inc"
|
2020-03-05 19:29:13 +03:00
|
|
|
#include "external/ExternalChecks.inc"
|
2020-03-17 10:01:09 +03:00
|
|
|
#ifdef MOZ_CLANG_PLUGIN_ALPHA
|
|
|
|
#include "alpha/AlphaChecks.inc"
|
|
|
|
#endif
|
2016-12-18 05:14:37 +03:00
|
|
|
#undef CHECK
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Register the MozillaTidyModule using this statically initialized variable.
|
2017-10-20 20:11:50 +03:00
|
|
|
static ClangTidyModuleRegistry::Add<MozillaModule>
|
|
|
|
X("mozilla-module", "Adds Mozilla lint checks.");
|
2016-12-18 05:14:37 +03:00
|
|
|
|
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|
|
|
|
|
|
|
|
// This anchor is used to force the linker to link in the generated object file
|
|
|
|
// and thus register the MozillaModule.
|
|
|
|
volatile int MozillaModuleAnchorSource = 0;
|
|
|
|
|
|
|
|
#endif
|