diff options
author | Owen Pan <owenpiano@gmail.com> | 2024-10-07 19:10:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 19:10:24 -0700 |
commit | 4b6e41b61e2edea2f80de3639e589301fe7c896c (patch) | |
tree | 95619f8081299d95e923fc9cfdd40e0e950ce636 /clang/lib | |
parent | b44371194b101ed0d6f5ad8b764c1dc748020b7b (diff) | |
download | llvm-4b6e41b61e2edea2f80de3639e589301fe7c896c.zip llvm-4b6e41b61e2edea2f80de3639e589301fe7c896c.tar.gz llvm-4b6e41b61e2edea2f80de3639e589301fe7c896c.tar.bz2 |
[clang-format] Don't insert spaces after keywords in protobuf field o… (#111229)
…ptions
Fixes #54848.
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Format/TokenAnnotator.cpp | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/clang/lib/Format/TokenAnnotator.cpp b/clang/lib/Format/TokenAnnotator.cpp index d537855..f6e5798 100644 --- a/clang/lib/Format/TokenAnnotator.cpp +++ b/clang/lib/Format/TokenAnnotator.cpp @@ -4910,6 +4910,8 @@ bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line, if (Left.is(tok::star) && Right.is(tok::comment)) return true; + const auto *BeforeLeft = Left.Previous; + if (IsCpp) { if (Left.is(TT_OverloadedOperator) && Right.isOneOf(TT_TemplateOpener, TT_TemplateCloser)) { @@ -4962,7 +4964,7 @@ bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line, if (Left.Tok.getIdentifierInfo() && Right.Tok.isLiteral()) return true; } else if (Style.isProto()) { - if (Right.is(tok::period) && + if (Right.is(tok::period) && !(BeforeLeft && BeforeLeft->is(tok::period)) && Left.isOneOf(Keywords.kw_optional, Keywords.kw_required, Keywords.kw_repeated, Keywords.kw_extend)) { return true; @@ -5070,8 +5072,8 @@ bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line, if (Left.is(TT_FatArrow)) return true; // for await ( ... - if (Right.is(tok::l_paren) && Left.is(Keywords.kw_await) && Left.Previous && - Left.Previous->is(tok::kw_for)) { + if (Right.is(tok::l_paren) && Left.is(Keywords.kw_await) && BeforeLeft && + BeforeLeft->is(tok::kw_for)) { return true; } if (Left.is(Keywords.kw_async) && Right.is(tok::l_paren) && @@ -5108,7 +5110,7 @@ bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line, return false; // Valid JS method names can include keywords, e.g. `foo.delete()` or // `bar.instanceof()`. Recognize call positions by preceding period. - if (Left.Previous && Left.Previous->is(tok::period) && + if (BeforeLeft && BeforeLeft->is(tok::period) && Left.Tok.getIdentifierInfo()) { return false; } @@ -5126,22 +5128,22 @@ bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line, // "of" is only a keyword if it appears after another identifier // (e.g. as "const x of y" in a for loop), or after a destructuring // operation (const [x, y] of z, const {a, b} of c). - (Left.is(Keywords.kw_of) && Left.Previous && - (Left.Previous->is(tok::identifier) || - Left.Previous->isOneOf(tok::r_square, tok::r_brace)))) && - (!Left.Previous || Left.Previous->isNot(tok::period))) { + (Left.is(Keywords.kw_of) && BeforeLeft && + (BeforeLeft->is(tok::identifier) || + BeforeLeft->isOneOf(tok::r_square, tok::r_brace)))) && + (!BeforeLeft || BeforeLeft->isNot(tok::period))) { return true; } - if (Left.isOneOf(tok::kw_for, Keywords.kw_as) && Left.Previous && - Left.Previous->is(tok::period) && Right.is(tok::l_paren)) { + if (Left.isOneOf(tok::kw_for, Keywords.kw_as) && BeforeLeft && + BeforeLeft->is(tok::period) && Right.is(tok::l_paren)) { return false; } if (Left.is(Keywords.kw_as) && Right.isOneOf(tok::l_square, tok::l_brace, tok::l_paren)) { return true; } - if (Left.is(tok::kw_default) && Left.Previous && - Left.Previous->is(tok::kw_export)) { + if (Left.is(tok::kw_default) && BeforeLeft && + BeforeLeft->is(tok::kw_export)) { return true; } if (Left.is(Keywords.kw_is) && Right.is(tok::l_brace)) |