Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 815735e

Browse files
committed
clang-format: [JS] Fix incorrect line break in template strings.
Before: var f = `aaaa ${a ? 'a' : 'b' }`; After: var f = `aaaa ${a ? 'a' : 'b'}`; git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@293618 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 7135967 commit 815735e

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

lib/Format/TokenAnnotator.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -2388,6 +2388,11 @@ bool TokenAnnotator::mustBreakBefore(const AnnotatedLine &Line,
23882388
if (Right.is(tok::plus) && Left.is(tok::string_literal) && Right.Next &&
23892389
Right.Next->is(tok::string_literal))
23902390
return true;
2391+
} else if (Style.Language == FormatStyle::LK_Cpp ||
2392+
Style.Language == FormatStyle::LK_ObjC) {
2393+
if (Left.isStringLiteral() &&
2394+
(Right.isStringLiteral() || Right.is(TT_ObjCStringLiteral)))
2395+
return true;
23912396
}
23922397

23932398
// If the last token before a '}' is a comma or a trailing comment, the
@@ -2411,9 +2416,6 @@ bool TokenAnnotator::mustBreakBefore(const AnnotatedLine &Line,
24112416
(Right.NewlinesBefore > 0 && Right.HasUnescapedNewline);
24122417
if (Left.isTrailingComment())
24132418
return true;
2414-
if (Left.isStringLiteral() &&
2415-
(Right.isStringLiteral() || Right.is(TT_ObjCStringLiteral)))
2416-
return true;
24172419
if (Right.Previous->IsUnterminatedLiteral)
24182420
return true;
24192421
if (Right.is(tok::lessless) && Right.Next &&

unittests/Format/FormatTestJS.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -1388,6 +1388,10 @@ TEST_F(FormatTestJS, TemplateStrings) {
13881388
"var y;");
13891389
// Escaped dollar.
13901390
verifyFormat("var x = ` \\${foo}`;\n");
1391+
1392+
// The token stream can contain two string_literals in sequence, but that
1393+
// doesn't mean that they are implicitly concatenated in JavaScript.
1394+
verifyFormat("var f = `aaaa ${a ? 'a' : 'b'}`;");
13911395
}
13921396

13931397
TEST_F(FormatTestJS, TemplateStringASI) {

0 commit comments

Comments
 (0)