blob: a1c5c4d6a950e144c071d61868ecead8b3087848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef TOOLS_CLANG_PLUGINS_FINDBADCONSTRUCTIONS_ACTION_H_
#define TOOLS_CLANG_PLUGINS_FINDBADCONSTRUCTIONS_ACTION_H_
#include "clang/Frontend/FrontendAction.h"
#include "Options.h"
namespace chrome_checker {
class FindBadConstructsAction : public clang::PluginASTAction {
public:
FindBadConstructsAction();
protected:
std::unique_ptr<clang::ASTConsumer> CreateASTConsumer(
clang::CompilerInstance& instance,
llvm::StringRef ref) override;
PluginASTAction::ActionType getActionType() override {
return CmdlineBeforeMainAction;
}
bool ParseArgs(const clang::CompilerInstance& instance,
const std::vector<std::string>& args) override;
private:
Options options_;
};
} // namespace chrome_checker
#endif // TOOLS_CLANG_PLUGINS_FINDBADCONSTRUCTIONS_ACTION_H_
|