[PATCH] Leave some macros on their own line
Daniel Jasper
djasper at google.com
Wed May 29 05:57:16 PDT 2013
Hi klimek,
If an identifier is on its own line and it is all upper case, it is highly likely that this is a macro that is meant to stand on a line by itself.
Before:
class A : public QObject {
Q_OBJECT A() {}
};
Ater:
class A : public QObject {
Q_OBJECT
A() {}
};
http://llvm-reviews.chandlerc.com/D886
Files:
lib/Format/UnwrappedLineParser.cpp
unittests/Format/FormatTest.cpp
Index: lib/Format/UnwrappedLineParser.cpp
===================================================================
--- lib/Format/UnwrappedLineParser.cpp
+++ lib/Format/UnwrappedLineParser.cpp
@@ -581,7 +581,8 @@
// Otherwise this was a braced init list, and the structural
// element continues.
break;
- case tok::identifier:
+ case tok::identifier: {
+ StringRef Text = FormatTok->TokenText;
nextToken();
if (Line->Tokens.size() == 1) {
if (FormatTok->Tok.is(tok::colon)) {
@@ -596,9 +597,13 @@
addUnwrappedLine();
return;
}
+ } else if (FormatTok->HasUnescapedNewline && Text == Text.upper()) {
+ // Recognize free-standing macros like QOBJECT
+ addUnwrappedLine();
}
}
break;
+ }
case tok::equal:
nextToken();
if (FormatTok->Tok.is(tok::l_brace)) {
Index: unittests/Format/FormatTest.cpp
===================================================================
--- unittests/Format/FormatTest.cpp
+++ unittests/Format/FormatTest.cpp
@@ -1690,6 +1690,28 @@
"f(STR(this_is_a_string_literal{));");
}
+TEST_F(FormatTest, MacrosWithoutTrailingSemicolon) {
+ verifyFormat("SOME_TYPE_NAME abc;"); // Gated on the newline.
+ EXPECT_EQ("class A : public QObject {\n"
+ " Q_OBJECT\n"
+ "\n"
+ " A() {}\n"
+ "};",
+ format("class A : public QObject {\n"
+ " Q_OBJECT\n"
+ "\n"
+ " A() {\n}\n"
+ "} ;"));
+ EXPECT_EQ("class A : public QObject {\n"
+ " Q_Object A() {}\n"
+ "};",
+ format("class A : public QObject {\n"
+ " Q_Object\n"
+ "\n"
+ " A() {\n}\n"
+ "} ;"));
+}
+
TEST_F(FormatTest, MacroCallsWithoutTrailingSemicolon) {
EXPECT_EQ("INITIALIZE_PASS_BEGIN(ScopDetection, \"polly-detect\")\n"
"INITIALIZE_AG_DEPENDENCY(AliasAnalysis)\n"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D886.1.patch
Type: text/x-patch
Size: 2078 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20130529/4abeb19d/attachment.bin>
More information about the cfe-commits
mailing list