r174879 - Fix invalid formatting with spaces before trailing comments.
Daniel Jasper
djasper at google.com
Mon Feb 11 04:36:37 PST 2013
Author: djasper
Date: Mon Feb 11 06:36:37 2013
New Revision: 174879
URL: http://llvm.org/viewvc/llvm-project?rev=174879&view=rev
Log:
Fix invalid formatting with spaces before trailing comments.
In google style, trailing comments are separated by two spaces. This
patch fixes the counting of these spaces and prevents clang-format from
creating a line with 81 columns.
Modified:
cfe/trunk/lib/Format/Format.cpp
cfe/trunk/lib/Format/TokenAnnotator.cpp
cfe/trunk/lib/Format/TokenAnnotator.h
cfe/trunk/unittests/Format/FormatTest.cpp
Modified: cfe/trunk/lib/Format/Format.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Format/Format.cpp?rev=174879&r1=174878&r2=174879&view=diff
==============================================================================
--- cfe/trunk/lib/Format/Format.cpp (original)
+++ cfe/trunk/lib/Format/Format.cpp Mon Feb 11 06:36:37 2013
@@ -489,9 +489,7 @@ private:
(RootToken.is(tok::kw_for) || State.ParenLevel == 0))
State.VariablePos = State.Column - Previous.FormatTok.TokenLength;
- unsigned Spaces = State.NextToken->SpaceRequiredBefore ? 1 : 0;
- if (State.NextToken->Type == TT_LineComment)
- Spaces = Style.SpacesBeforeTrailingComments;
+ unsigned Spaces = State.NextToken->SpacesRequiredBefore;
if (!DryRun)
Whitespaces.replaceWhitespace(Current, 0, Spaces, State.Column, Style);
@@ -1099,7 +1097,7 @@ private:
AnnotatedToken *Tok = &(I + 1)->First;
if (Tok->Children.empty() && Tok->is(tok::r_brace) &&
!Tok->MustBreakBefore && Tok->TotalLength <= Limit) {
- Tok->SpaceRequiredBefore = false;
+ Tok->SpacesRequiredBefore = 0;
join(Line, *(I + 1));
I += 1;
} else {
Modified: cfe/trunk/lib/Format/TokenAnnotator.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Format/TokenAnnotator.cpp?rev=174879&r1=174878&r2=174879&view=diff
==============================================================================
--- cfe/trunk/lib/Format/TokenAnnotator.cpp (original)
+++ cfe/trunk/lib/Format/TokenAnnotator.cpp Mon Feb 11 06:36:37 2013
@@ -778,7 +778,7 @@ void TokenAnnotator::annotate(AnnotatedL
else if (Line.First.Type == TT_ObjCProperty)
Line.Type = LT_ObjCProperty;
- Line.First.SpaceRequiredBefore = true;
+ Line.First.SpacesRequiredBefore = 1;
Line.First.MustBreakBefore = Line.First.FormatTok.MustBreakBefore;
Line.First.CanBreakBefore = Line.First.MustBreakBefore;
@@ -790,7 +790,11 @@ void TokenAnnotator::calculateFormatting
return;
AnnotatedToken *Current = &Line.First.Children[0];
while (Current != NULL) {
- Current->SpaceRequiredBefore = spaceRequiredBefore(Line, *Current);
+ if (Current->Type == TT_LineComment)
+ Current->SpacesRequiredBefore = Style.SpacesBeforeTrailingComments;
+ else
+ Current->SpacesRequiredBefore =
+ spaceRequiredBefore(Line, *Current) ? 1 : 0;
if (Current->FormatTok.MustBreakBefore) {
Current->MustBreakBefore = true;
@@ -814,7 +818,7 @@ void TokenAnnotator::calculateFormatting
else
Current->TotalLength =
Current->Parent->TotalLength + Current->FormatTok.TokenLength +
- (Current->SpaceRequiredBefore ? 1 : 0);
+ Current->SpacesRequiredBefore;
// FIXME: Only calculate this if CanBreakBefore is true once static
// initializers etc. are sorted out.
// FIXME: Move magic numbers to a better place.
Modified: cfe/trunk/lib/Format/TokenAnnotator.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Format/TokenAnnotator.h?rev=174879&r1=174878&r2=174879&view=diff
==============================================================================
--- cfe/trunk/lib/Format/TokenAnnotator.h (original)
+++ cfe/trunk/lib/Format/TokenAnnotator.h Mon Feb 11 06:36:37 2013
@@ -68,7 +68,7 @@ enum LineType {
class AnnotatedToken {
public:
explicit AnnotatedToken(const FormatToken &FormatTok)
- : FormatTok(FormatTok), Type(TT_Unknown), SpaceRequiredBefore(false),
+ : FormatTok(FormatTok), Type(TT_Unknown), SpacesRequiredBefore(0),
CanBreakBefore(false), MustBreakBefore(false),
ClosesTemplateDeclaration(false), MatchingParen(NULL),
ParameterCount(1), BindingStrength(0), SplitPenalty(0),
@@ -87,7 +87,7 @@ public:
TokenType Type;
- bool SpaceRequiredBefore;
+ unsigned SpacesRequiredBefore;
bool CanBreakBefore;
bool MustBreakBefore;
Modified: cfe/trunk/unittests/Format/FormatTest.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/unittests/Format/FormatTest.cpp?rev=174879&r1=174878&r2=174879&view=diff
==============================================================================
--- cfe/trunk/unittests/Format/FormatTest.cpp (original)
+++ cfe/trunk/unittests/Format/FormatTest.cpp Mon Feb 11 06:36:37 2013
@@ -493,6 +493,9 @@ TEST_F(FormatTest, UnderstandsSingleLine
" // B\n"
" \"aaaaa\",\n"
"};");
+ verifyGoogleFormat(
+ "aaaaaaaaaaaaaaaaaaaaaaaaaa(\n"
+ " aaaaaaaaaaaaaaaaaaaaaa); // 81 cols with this comment");
}
TEST_F(FormatTest, UnderstandsMultiLineComments) {
More information about the cfe-commits
mailing list