[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / clang-tidy / fuchsia / DefaultArgumentsDeclarationsCheck.cpp
blob05a663bf3d2393d6229e1ac92dbaadc7546c7f74
1 //===--- DefaultArgumentsDeclarationsCheck.cpp - clang-tidy ---------------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
9 #include "DefaultArgumentsDeclarationsCheck.h"
10 #include "clang/Lex/Lexer.h"
12 using namespace clang::ast_matchers;
14 namespace clang::tidy::fuchsia {
16 void DefaultArgumentsDeclarationsCheck::registerMatchers(MatchFinder *Finder) {
17 // Declaring default parameters is disallowed.
18 Finder->addMatcher(parmVarDecl(hasDefaultArgument()).bind("decl"), this);
21 void DefaultArgumentsDeclarationsCheck::check(
22 const MatchFinder::MatchResult &Result) {
23 const auto *D = Result.Nodes.getNodeAs<ParmVarDecl>("decl");
24 if (!D)
25 return;
27 SourceRange DefaultArgRange = D->getDefaultArgRange();
29 if (DefaultArgRange.getEnd() != D->getEndLoc())
30 return;
32 if (DefaultArgRange.getBegin().isMacroID()) {
33 diag(D->getBeginLoc(),
34 "declaring a parameter with a default argument is disallowed");
35 return;
38 SourceLocation StartLocation =
39 D->getName().empty() ? D->getBeginLoc() : D->getLocation();
41 SourceRange RemovalRange(
42 Lexer::getLocForEndOfToken(StartLocation, 0, *Result.SourceManager,
43 Result.Context->getLangOpts()),
44 DefaultArgRange.getEnd());
46 diag(D->getBeginLoc(),
47 "declaring a parameter with a default argument is disallowed")
48 << D << FixItHint::CreateRemoval(RemovalRange);
51 } // namespace clang::tidy::fuchsia