[clang] [clang-format][NFC] Followup cleanup after #199459 (PR #202104)
via cfe-commits
cfe-commits at lists.llvm.org
Sat Jun 6 23:03:16 PDT 2026
https://github.com/owenca created https://github.com/llvm/llvm-project/pull/202104
None
>From 5d6520582d3d90f1173e379847e5d5117ab13c16 Mon Sep 17 00:00:00 2001
From: Owen Pan <owenpiano at gmail.com>
Date: Sat, 6 Jun 2026 23:02:07 -0700
Subject: [PATCH] [clang-format][NFC] Followup cleanup after #199459
---
clang/lib/Format/TokenAnnotator.cpp | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp
index 22b41fb337cda..c47a512454476 100644
--- a/clang/lib/Format/TokenAnnotator.cpp
+++ b/clang/lib/Format/TokenAnnotator.cpp
@@ -2701,6 +2701,7 @@ class AnnotatingParser {
// int a or auto a.
if (PreviousNotConst->isOneOf(tok::identifier, tok::kw_auto) &&
+ !PreviousNotConst->endsSequence(Keywords.kw_import, tok::kw_export) &&
PreviousNotConst->isNot(TT_StatementAttributeLikeMacro)) {
return true;
}
@@ -5227,23 +5228,19 @@ bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line,
(!BeforeLeft || BeforeLeft->is(tok::kw_export))) {
return true;
}
- // Space between `module :` and `import :`.
- if (Left.isOneOf(Keywords.kw_module, Keywords.kw_import) &&
- Right.is(TT_ModulePartitionColon)) {
+ // Space between `import :`.
+ if (Left.is(Keywords.kw_import) && Right.is(TT_ModulePartitionColon))
return true;
- }
if (Right.is(TT_AfterPPDirective))
return true;
- // No space between import foo:bar but keep a space between import :bar;
+ // No space between `module foo:bar`.
if (Left.is(tok::identifier) && Right.is(TT_ModulePartitionColon))
return false;
// No space between :bar;
- if (Left.is(TT_ModulePartitionColon) &&
- Right.isOneOf(tok::identifier, tok::kw_private)) {
+ if (Left.is(TT_ModulePartitionColon) && Right.is(tok::identifier))
return false;
- }
if (Left.is(tok::ellipsis) && Right.is(tok::identifier) &&
Line.First->is(Keywords.kw_import)) {
return false;
More information about the cfe-commits
mailing list