//===--- AssertEquals.cpp - clang-tidy --------------------------*- 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 // //===----------------------------------------------------------------------===// #include "AssertEquals.h" #include <map> #include <string> usingnamespaceclang::ast_matchers; namespace clang::tidy::objc { // Mapping from `XCTAssert*Equal` to `XCTAssert*EqualObjects` name. static const std::map<std::string, std::string> &NameMap() { … } void AssertEquals::registerMatchers(MatchFinder *finder) { … } void AssertEquals::check(const ast_matchers::MatchFinder::MatchResult &result) { … } } // namespace clang::tidy::objc