[clang] [clang-format] Fix a bug in FormatToken::isObjCAccessSpecifier() (PR #136109)
Owen Pan via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 17 01:44:39 PDT 2025
https://github.com/owenca created https://github.com/llvm/llvm-project/pull/136109
Fix #136092
>From ca6de153829c0c79e08f823fe472aee1a502d67c Mon Sep 17 00:00:00 2001
From: Owen Pan <owenpiano at gmail.com>
Date: Thu, 17 Apr 2025 01:40:48 -0700
Subject: [PATCH] [clang-format] Fix a bug in
FormatToken::isObjCAccessSpecifier()
Fix #136092
---
clang/lib/Format/FormatToken.h | 5 +++--
clang/unittests/Format/TokenAnnotatorTest.cpp | 6 ++++++
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/clang/lib/Format/FormatToken.h b/clang/lib/Format/FormatToken.h
index 87e16397ad069..946cd7b81587f 100644
--- a/clang/lib/Format/FormatToken.h
+++ b/clang/lib/Format/FormatToken.h
@@ -706,8 +706,9 @@ struct FormatToken {
[[nodiscard]] bool isTypeOrIdentifier(const LangOptions &LangOpts) const;
bool isObjCAccessSpecifier() const {
- return Next && Next->isOneOf(tok::objc_public, tok::objc_protected,
- tok::objc_package, tok::objc_private);
+ return is(tok::at) && Next &&
+ Next->isOneOf(tok::objc_public, tok::objc_protected,
+ tok::objc_package, tok::objc_private);
}
/// Returns whether \p Tok is ([{ or an opening < of a template or in
diff --git a/clang/unittests/Format/TokenAnnotatorTest.cpp b/clang/unittests/Format/TokenAnnotatorTest.cpp
index 2c7319ccefec2..0f144d043667e 100644
--- a/clang/unittests/Format/TokenAnnotatorTest.cpp
+++ b/clang/unittests/Format/TokenAnnotatorTest.cpp
@@ -3963,6 +3963,12 @@ TEST_F(TokenAnnotatorTest, UTF8StringLiteral) {
EXPECT_TOKEN(Tokens[1], tok::utf8_string_literal, TT_Unknown);
}
+TEST_F(TokenAnnotatorTest, IdentifierPackage) {
+ auto Tokens = annotate("auto package;");
+ ASSERT_EQ(Tokens.size(), 4u) << Tokens;
+ EXPECT_TOKEN(Tokens[1], tok::identifier, TT_StartOfName);
+}
+
} // namespace
} // namespace format
} // namespace clang
More information about the cfe-commits
mailing list