Krasimir Georgiev | 7cb267a | 2017-02-27 13:28:36 +0000 | [diff] [blame] | 1 | //===--- NamespaceEndCommentsFixer.h ----------------------------*- C++ -*-===// |
| 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 |
Krasimir Georgiev | 7cb267a | 2017-02-27 13:28:36 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 10 | /// This file declares NamespaceEndCommentsFixer, a TokenAnalyzer that |
Krasimir Georgiev | 7cb267a | 2017-02-27 13:28:36 +0000 | [diff] [blame] | 11 | /// fixes namespace end comments. |
| 12 | /// |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef LLVM_CLANG_LIB_FORMAT_NAMESPACEENDCOMMENTSFIXER_H |
| 16 | #define LLVM_CLANG_LIB_FORMAT_NAMESPACEENDCOMMENTSFIXER_H |
| 17 | |
| 18 | #include "TokenAnalyzer.h" |
| 19 | |
| 20 | namespace clang { |
| 21 | namespace format { |
| 22 | |
Krasimir Georgiev | 6210305 | 2018-04-19 13:02:15 +0000 | [diff] [blame] | 23 | // Finds the namespace token corresponding to a closing namespace `}`, if that |
| 24 | // is to be formatted. |
| 25 | // If \p Line contains the closing `}` of a namespace, is affected and is not in |
| 26 | // a preprocessor directive, the result will be the matching namespace token. |
| 27 | // Otherwise returns null. |
| 28 | // \p AnnotatedLines is the sequence of lines from which \p Line is a member of. |
| 29 | const FormatToken * |
| 30 | getNamespaceToken(const AnnotatedLine *Line, |
| 31 | const SmallVectorImpl<AnnotatedLine *> &AnnotatedLines); |
| 32 | |
Krasimir Georgiev | 7cb267a | 2017-02-27 13:28:36 +0000 | [diff] [blame] | 33 | class NamespaceEndCommentsFixer : public TokenAnalyzer { |
| 34 | public: |
| 35 | NamespaceEndCommentsFixer(const Environment &Env, const FormatStyle &Style); |
| 36 | |
Krasimir Georgiev | 9ad83fe | 2017-10-30 14:01:50 +0000 | [diff] [blame] | 37 | std::pair<tooling::Replacements, unsigned> |
Krasimir Georgiev | 7cb267a | 2017-02-27 13:28:36 +0000 | [diff] [blame] | 38 | analyze(TokenAnnotator &Annotator, |
| 39 | SmallVectorImpl<AnnotatedLine *> &AnnotatedLines, |
| 40 | FormatTokenLexer &Tokens) override; |
| 41 | }; |
| 42 | |
| 43 | } // end namespace format |
| 44 | } // end namespace clang |
| 45 | |
| 46 | #endif |