
This pr refactors most tests that use RAV to use DRAV instead; this also has the nice effect of testing both the RAV and DRAV implementations at the same time w/o having to duplicate all of our AST visitor tests. Some tests rely on features that DRAV doesn’t support (mainly post-order traversal), so those haven’t been migrated. At the same time, `TestVisitor` is now a DRAV, so I’ve had to introduce a new `CTRPTestVisitor` for any tests that need to use RAV directly.
43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
//===--- 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
|