Yan Zhang | 8c348b3 | 2017-11-30 19:05:08 +0000 | [diff] [blame] | 1 | //===--- AvoidNSErrorInitCheck.cpp - clang-tidy----------------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Yan Zhang | 8c348b3 | 2017-11-30 19:05:08 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "AvoidNSErrorInitCheck.h" |
| 10 | #include "clang/AST/ASTContext.h" |
| 11 | #include "clang/ASTMatchers/ASTMatchFinder.h" |
| 12 | |
| 13 | using namespace clang::ast_matchers; |
| 14 | |
| 15 | namespace clang { |
| 16 | namespace tidy { |
| 17 | namespace objc { |
| 18 | |
| 19 | void AvoidNSErrorInitCheck::registerMatchers(MatchFinder *Finder) { |
Yan Zhang | 8c348b3 | 2017-11-30 19:05:08 +0000 | [diff] [blame] | 20 | Finder->addMatcher(objcMessageExpr(hasSelector("init"), |
| 21 | hasReceiverType(asString("NSError *"))) |
| 22 | .bind("nserrorInit"), |
| 23 | this); |
| 24 | } |
| 25 | |
| 26 | void AvoidNSErrorInitCheck::check(const MatchFinder::MatchResult &Result) { |
| 27 | const auto *MatchedExpr = |
| 28 | Result.Nodes.getNodeAs<ObjCMessageExpr>("nserrorInit"); |
Stephen Kelly | 43465bf | 2018-08-09 22:42:26 +0000 | [diff] [blame] | 29 | diag(MatchedExpr->getBeginLoc(), |
Yan Zhang | 8c348b3 | 2017-11-30 19:05:08 +0000 | [diff] [blame] | 30 | "use errorWithDomain:code:userInfo: or initWithDomain:code:userInfo: to " |
| 31 | "create a new NSError"); |
| 32 | } |
| 33 | |
| 34 | } // namespace objc |
| 35 | } // namespace tidy |
| 36 | } // namespace clang |