[clang] c5fdb5c - [clang-format] Insert a space between a keyword and a literal (#93632)
via cfe-commits
cfe-commits at lists.llvm.org
Thu May 30 22:13:04 PDT 2024
Author: Owen Pan
Date: 2024-05-30T22:13:00-07:00
New Revision: c5fdb5c34e0dc3f5f3c0db19cf704b30a778cd0e
URL: https://github.com/llvm/llvm-project/commit/c5fdb5c34e0dc3f5f3c0db19cf704b30a778cd0e
DIFF: https://github.com/llvm/llvm-project/commit/c5fdb5c34e0dc3f5f3c0db19cf704b30a778cd0e.diff
LOG: [clang-format] Insert a space between a keyword and a literal (#93632)
Fixes #93603.
Added:
Modified:
clang/lib/Format/FormatToken.h
clang/lib/Format/TokenAnnotator.cpp
clang/lib/Format/UnwrappedLineParser.cpp
clang/unittests/Format/FormatTest.cpp
Removed:
################################################################################
diff --git a/clang/lib/Format/FormatToken.h b/clang/lib/Format/FormatToken.h
index 8792f4c750748..e4a4f27e502b1 100644
--- a/clang/lib/Format/FormatToken.h
+++ b/clang/lib/Format/FormatToken.h
@@ -727,6 +727,29 @@ struct FormatToken {
return isOneOf(tok::star, tok::amp, tok::ampamp);
}
+ bool isCppAlternativeOperatorKeyword() const {
+ assert(!TokenText.empty());
+ if (!isalpha(TokenText[0]))
+ return false;
+
+ switch (Tok.getKind()) {
+ case tok::ampamp:
+ case tok::ampequal:
+ case tok::amp:
+ case tok::pipe:
+ case tok::tilde:
+ case tok::exclaim:
+ case tok::exclaimequal:
+ case tok::pipepipe:
+ case tok::pipeequal:
+ case tok::caret:
+ case tok::caretequal:
+ return true;
+ default:
+ return false;
+ }
+ }
+
bool isUnaryOperator() const {
switch (Tok.getKind()) {
case tok::plus:
diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp
index 7c4c76a91f2c5..26c0aa36bdcb6 100644
--- a/clang/lib/Format/TokenAnnotator.cpp
+++ b/clang/lib/Format/TokenAnnotator.cpp
@@ -4846,8 +4846,12 @@ bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line,
Right.is(TT_TemplateOpener)) {
return true;
}
- if (Left.Tok.getIdentifierInfo() && Right.is(tok::numeric_constant))
+ // C++ Core Guidelines suppression tag, e.g. `[[suppress(type.5)]]`.
+ if (Left.is(tok::identifier) && Right.is(tok::numeric_constant))
return Right.TokenText[0] != '.';
+ // `Left` is a keyword (including C++ alternative operator) or identifier.
+ if (Left.Tok.getIdentifierInfo() && Right.Tok.isLiteral())
+ return true;
} else if (Style.isProto()) {
if (Right.is(tok::period) &&
Left.isOneOf(Keywords.kw_optional, Keywords.kw_required,
diff --git a/clang/lib/Format/UnwrappedLineParser.cpp b/clang/lib/Format/UnwrappedLineParser.cpp
index bf89def05bb2d..5c0ff0f6132b2 100644
--- a/clang/lib/Format/UnwrappedLineParser.cpp
+++ b/clang/lib/Format/UnwrappedLineParser.cpp
@@ -1410,13 +1410,6 @@ void UnwrappedLineParser::readTokenWithJavaScriptASI() {
}
}
-static bool isAltOperator(const FormatToken &Tok) {
- return isalpha(Tok.TokenText[0]) &&
- Tok.isOneOf(tok::ampamp, tok::ampequal, tok::amp, tok::pipe,
- tok::tilde, tok::exclaim, tok::exclaimequal, tok::pipepipe,
- tok::pipeequal, tok::caret, tok::caretequal);
-}
-
void UnwrappedLineParser::parseStructuralElement(
const FormatToken *OpeningBrace, IfStmtKind *IfKind,
FormatToken **IfLeftBrace, bool *HasDoWhile, bool *HasLabel) {
@@ -1699,7 +1692,7 @@ void UnwrappedLineParser::parseStructuralElement(
for (const bool InRequiresExpression =
OpeningBrace && OpeningBrace->is(TT_RequiresExpressionLBrace);
!eof();) {
- if (IsCpp && isAltOperator(*FormatTok)) {
+ if (IsCpp && FormatTok->isCppAlternativeOperatorKeyword()) {
if (auto *Next = Tokens->peekNextToken(/*SkipComment=*/true);
Next && Next->isBinaryOperator()) {
FormatTok->Tok.setKind(tok::identifier);
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp
index 76eb2b6cd994c..59f1ff6a4b296 100644
--- a/clang/unittests/Format/FormatTest.cpp
+++ b/clang/unittests/Format/FormatTest.cpp
@@ -27452,6 +27452,12 @@ TEST_F(FormatTest, AlignUTFCommentsAndStringLiterals) {
Style);
}
+TEST_F(FormatTest, SpaceBetweenKeywordAndLiteral) {
+ verifyFormat("return .5;");
+ verifyFormat("return not '5';");
+ verifyFormat("return sizeof \"5\";");
+}
+
} // namespace
} // namespace test
} // namespace format
More information about the cfe-commits
mailing list