blob: 67ae36b2e3ddd9204edce06f1c1bb33c62ef6e91 (
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
35
36
37
38
39
40
41
42
|
//===--- TestVisitor.h ------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
///
/// \file
/// \brief Defines a CRTP-based RecursiveASTVisitor helper for tests.
///
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_UNITTESTS_TOOLING_CRTPTESTVISITOR_H
#define LLVM_CLANG_UNITTESTS_TOOLING_CRTPTESTVISITOR_H
#include "TestVisitor.h"
#include "clang/AST/RecursiveASTVisitor.h"
// CRTP versions of the visitors in TestVisitor.h.
namespace clang {
template <typename T>
class CRTPTestVisitor : public RecursiveASTVisitor<T>,
public detail::TestVisitorHelper {
public:
bool shouldVisitTemplateInstantiations() const { return true; }
bool shouldVisitImplicitCode() const { return true; }
void InvokeTraverseDecl(TranslationUnitDecl *D) override {
RecursiveASTVisitor<T>::TraverseDecl(D);
}
};
template <typename T>
class CRTPExpectedLocationVisitor
: public CRTPTestVisitor<T>,
public detail::ExpectedLocationVisitorHelper {
ASTContext *getASTContext() override { return this->Context; }
};
} // namespace clang
#endif // LLVM_CLANG_UNITTESTS_TOOLING_CRTPTESTVISITOR_H
|