2016-12-18 00:35:53 +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/. */
|
|
|
|
|
|
|
|
#ifndef DiagnosticsMatcher_h__
|
|
|
|
#define DiagnosticsMatcher_h__
|
|
|
|
|
2016-12-18 05:14:37 +03:00
|
|
|
#include "ChecksIncludes.inc"
|
2016-12-18 00:35:53 +03:00
|
|
|
|
|
|
|
class DiagnosticsMatcher {
|
|
|
|
public:
|
2017-10-20 20:11:50 +03:00
|
|
|
DiagnosticsMatcher(CompilerInstance &CI);
|
2016-12-18 00:35:53 +03:00
|
|
|
|
|
|
|
ASTConsumerPtr makeASTConsumer() { return AstMatcher.newASTConsumer(); }
|
|
|
|
|
|
|
|
private:
|
2017-10-20 20:11:50 +03:00
|
|
|
#define CHECK(cls, name) cls cls##_;
|
2016-12-18 05:14:37 +03:00
|
|
|
#include "Checks.inc"
|
|
|
|
#undef CHECK
|
2016-12-18 00:35:53 +03:00
|
|
|
MatchFinder AstMatcher;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|