Richard Thomson | 8930aab | 2016-03-27 16:43:44 +0000 | [diff] [blame] | 1 | //===--- RawStringLiteralCheck.h - clang-tidy--------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_RAW_STRING_LITERAL_H |
| 11 | #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_RAW_STRING_LITERAL_H |
| 12 | |
| 13 | #include "../ClangTidy.h" |
Richard Thomson | 8930aab | 2016-03-27 16:43:44 +0000 | [diff] [blame] | 14 | |
| 15 | namespace clang { |
| 16 | namespace tidy { |
| 17 | namespace modernize { |
| 18 | |
| 19 | /// This check replaces string literals with escaped characters to |
| 20 | /// raw string literals. |
| 21 | /// |
| 22 | /// For the user-facing documentation see: |
| 23 | /// http://clang.llvm.org/extra/clang-tidy/checks/modernize-raw-string-literal.html |
| 24 | class RawStringLiteralCheck : public ClangTidyCheck { |
| 25 | public: |
| 26 | RawStringLiteralCheck(StringRef Name, ClangTidyContext *Context); |
| 27 | |
| 28 | void storeOptions(ClangTidyOptions::OptionMap &Options) override; |
| 29 | void registerMatchers(ast_matchers::MatchFinder *Finder) override; |
| 30 | void check(const ast_matchers::MatchFinder::MatchResult &Result) override; |
| 31 | |
| 32 | private: |
| 33 | void replaceWithRawStringLiteral( |
| 34 | const ast_matchers::MatchFinder::MatchResult &Result, |
Gabor Horvath | 3ac2ad7d6c | 2017-01-24 15:18:11 +0000 | [diff] [blame^] | 35 | const StringLiteral *Literal, StringRef Replacement); |
Richard Thomson | 8930aab | 2016-03-27 16:43:44 +0000 | [diff] [blame] | 36 | |
| 37 | std::string DelimiterStem; |
Gabor Horvath | 3ac2ad7d6c | 2017-01-24 15:18:11 +0000 | [diff] [blame^] | 38 | const bool ReplaceShorterLiterals; |
Richard Thomson | 8930aab | 2016-03-27 16:43:44 +0000 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | } // namespace modernize |
| 42 | } // namespace tidy |
| 43 | } // namespace clang |
| 44 | |
| 45 | #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_RAW_STRING_LITERAL_H |