4#include "clang/AST/RecursiveASTVisitor.h"
11 class CXXBoolLiteralExpr;
17class FindArgument :
public clang::RecursiveASTVisitor<FindArgument> {
virtual bool VisitIntegerLiteral(clang::IntegerLiteral *il)
virtual bool VisitDeclRefExpr(clang::DeclRefExpr *de)
virtual bool VisitCXXBoolLiteralExpr(clang::CXXBoolLiteralExpr *bl)
clang::Expr * expression_
FindArgument(clang::Expr *)
virtual bool VisitMemberExpr(clang::MemberExpr *me)
std::string argument_name_
std::string getArgumentName()
Clang forward declarations.