Skip to content

Commit 56ff7aa

Browse files
committedSep 6, 2016
clang-format: [JS] ignore comments when wrapping returns.
Summary: When code contains a comment between `return` and the value: return /* lengthy comment here */ ( lengthyValueComesHere); Do not wrap before the comment, as that'd break the code through JS' automatic semicolon insertion. Reviewers: djasper Subscribers: klimek, cfe-commits Differential Revision: https://reviews.llvm.org/D24257 llvm-svn: 280730
1 parent 5baa1c7 commit 56ff7aa

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed
 

‎clang/lib/Format/TokenAnnotator.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -2381,7 +2381,12 @@ bool TokenAnnotator::canBreakBefore(const AnnotatedLine &Line,
23812381
Keywords.kw_implements))
23822382
return true;
23832383
} else if (Style.Language == FormatStyle::LK_JavaScript) {
2384-
if (Left.is(tok::kw_return))
2384+
const FormatToken *NonComment = Right.getPreviousNonComment();
2385+
if (Left.isOneOf(tok::kw_return, tok::kw_continue, tok::kw_break,
2386+
tok::kw_throw) ||
2387+
(NonComment &&
2388+
NonComment->isOneOf(tok::kw_return, tok::kw_continue, tok::kw_break,
2389+
tok::kw_throw)))
23852390
return false; // Otherwise a semicolon is inserted.
23862391
if (Left.is(TT_JsFatArrow) && Right.is(tok::l_brace))
23872392
return false;

‎clang/unittests/Format/FormatTestJS.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,9 @@ TEST_F(FormatTestJS, WrapRespectsAutomaticSemicolonInsertion) {
686686
// would change due to automatic semicolon insertion.
687687
// See http://www.ecma-international.org/ecma-262/5.1/#sec-7.9.1.
688688
verifyFormat("return aaaaa;", getGoogleJSStyleWithColumns(10));
689+
verifyFormat("return /* hello! */ aaaaa;", getGoogleJSStyleWithColumns(10));
689690
verifyFormat("continue aaaaa;", getGoogleJSStyleWithColumns(10));
691+
verifyFormat("continue /* hello! */ aaaaa;", getGoogleJSStyleWithColumns(10));
690692
verifyFormat("break aaaaa;", getGoogleJSStyleWithColumns(10));
691693
verifyFormat("throw aaaaa;", getGoogleJSStyleWithColumns(10));
692694
verifyFormat("aaaaaaaaa++;", getGoogleJSStyleWithColumns(10));

0 commit comments

Comments
 (0)
Please sign in to comment.