diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 4017870..5d64c68 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -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; diff --git a/src/dfmt/wrapping.d b/src/dfmt/wrapping.d index 41edf2f..79fb85f 100644 --- a/src/dfmt/wrapping.d +++ b/src/dfmt/wrapping.d @@ -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)) diff --git a/tests/allman/issue0476.d.ref b/tests/allman/issue0476.d.ref new file mode 100644 index 0000000..c95e2de --- /dev/null +++ b/tests/allman/issue0476.d.ref @@ -0,0 +1,7 @@ +string BuildForwardCall() +{ + return `static if (is(typeof(mocked___.` ~ methodString ~ argsPassed ~ `))) + { + return (mocked___.` ~ methodString ~ argsPassed ~ `); + }`; +} diff --git a/tests/issue0476.d b/tests/issue0476.d new file mode 100644 index 0000000..c95e2de --- /dev/null +++ b/tests/issue0476.d @@ -0,0 +1,7 @@ +string BuildForwardCall() +{ + return `static if (is(typeof(mocked___.` ~ methodString ~ argsPassed ~ `))) + { + return (mocked___.` ~ methodString ~ argsPassed ~ `); + }`; +} diff --git a/tests/otbs/issue0476.d.ref b/tests/otbs/issue0476.d.ref new file mode 100644 index 0000000..924e771 --- /dev/null +++ b/tests/otbs/issue0476.d.ref @@ -0,0 +1,6 @@ +string BuildForwardCall() { + return `static if (is(typeof(mocked___.` ~ methodString ~ argsPassed ~ `))) + { + return (mocked___.` ~ methodString ~ argsPassed ~ `); + }`; +}