Break line on multiline strings

Fixes #476.
This commit is contained in:
Eugen Wissner 2020-08-03 06:51:40 +02:00 committed by The Dlang Bot
parent b5dbb0e031
commit 58b2c6ebc6
5 changed files with 34 additions and 8 deletions

View File

@ -1622,16 +1622,21 @@ private:
{
import std.range : assumeSorted;
import std.algorithm.comparison : min;
import std.algorithm.searching : countUntil;
import std.algorithm.searching : canFind, countUntil;
// The end of the tokens considered by the line break algorithm is
// either the expression end index or the next mandatory line break,
// whichever is first.
// either the expression end index or the next mandatory line break
// or a newline inside a string literal, whichever is first.
auto r = assumeSorted(astInformation.ufcsHintLocations).upperBound(tokens[i].index);
immutable ufcsBreakLocation = r.empty
? size_t.max
: tokens[i .. $].countUntil!(t => t.index == r.front) + i;
immutable size_t j = min(expressionEndIndex(i), ufcsBreakLocation);
immutable multilineStringLocation = tokens[i .. $]
.countUntil!(t => t.text.canFind('\n'));
immutable size_t j = min(
expressionEndIndex(i),
ufcsBreakLocation,
multilineStringLocation == -1 ? size_t.max : multilineStringLocation + i + 1);
// Use magical negative value for array literals and wrap indents
immutable inLvl = (indents.topIsWrap() || indents.topIs(tok!"]")) ? -indentLevel
: indentLevel;
@ -1839,7 +1844,11 @@ private:
case tok!"wstringLiteral":
case tok!"dstringLiteral":
immutable o = current.text.retro().countUntil('\n');
currentLineLength += o == -1 ? current.text.length : o;
if (o == -1) {
currentLineLength += current.text.length;
} else {
currentLineLength = cast(uint) o;
}
break;
default:
currentLineLength += current.text.length;

View File

@ -172,9 +172,6 @@ size_t[] chooseLineBreakTokens(size_t index, const Token[] tokens,
void validMoves(OR)(auto ref OR output, const Token[] tokens, immutable short[] depths,
uint current, const Config* config, int currentLineLength, int indentLevel)
{
import std.algorithm : sort, canFind, min;
import std.array : insertInPlace;
foreach (i, token; tokens)
{
if (!isBreakToken(token.type) || (((1 << i) & current) != 0))

View File

@ -0,0 +1,7 @@
string BuildForwardCall()
{
return `static if (is(typeof(mocked___.` ~ methodString ~ argsPassed ~ `)))
{
return (mocked___.` ~ methodString ~ argsPassed ~ `);
}`;
}

7
tests/issue0476.d Normal file
View File

@ -0,0 +1,7 @@
string BuildForwardCall()
{
return `static if (is(typeof(mocked___.` ~ methodString ~ argsPassed ~ `)))
{
return (mocked___.` ~ methodString ~ argsPassed ~ `);
}`;
}

View File

@ -0,0 +1,6 @@
string BuildForwardCall() {
return `static if (is(typeof(mocked___.` ~ methodString ~ argsPassed ~ `)))
{
return (mocked___.` ~ methodString ~ argsPassed ~ `);
}`;
}