Fix #119
This commit is contained in:
parent
76c37dd8f6
commit
7a4392dda9
97
src/dfmt.d
97
src/dfmt.d
|
@ -149,10 +149,12 @@ immutable(short[]) generateDepthInfo(const Token[] tokens)
|
||||||
{
|
{
|
||||||
switch (t.type)
|
switch (t.type)
|
||||||
{
|
{
|
||||||
|
case tok!"{":
|
||||||
case tok!"(":
|
case tok!"(":
|
||||||
case tok!"[":
|
case tok!"[":
|
||||||
depth++;
|
depth++;
|
||||||
break;
|
break;
|
||||||
|
case tok!"}":
|
||||||
case tok!")":
|
case tok!")":
|
||||||
case tok!"]":
|
case tok!"]":
|
||||||
depth--;
|
depth--;
|
||||||
|
@ -363,18 +365,18 @@ private:
|
||||||
else if (currentIs(tok!","))
|
else if (currentIs(tok!","))
|
||||||
{
|
{
|
||||||
// compute length until next , or ;
|
// compute length until next , or ;
|
||||||
int length_of_next_chunk = INVALID_TOKEN_LENGTH;
|
int lengthOfNextChunk = INVALID_TOKEN_LENGTH;
|
||||||
for (size_t i = index + 1; i < tokens.length; i++)
|
for (size_t i = index + 1; i < tokens.length; i++)
|
||||||
{
|
{
|
||||||
if (tokens[i].type == tok!"," || tokens[i].type == tok!";")
|
if (tokens[i].type == tok!"," || tokens[i].type == tok!";")
|
||||||
break;
|
break;
|
||||||
const len = tokenLength(tokens[i]);
|
const len = tokenLength(tokens[i]);
|
||||||
assert(len >= 0);
|
assert(len >= 0);
|
||||||
length_of_next_chunk += len;
|
lengthOfNextChunk += len;
|
||||||
}
|
}
|
||||||
assert(length_of_next_chunk > 0);
|
assert(lengthOfNextChunk > 0);
|
||||||
writeToken();
|
writeToken();
|
||||||
if (currentLineLength + 1 + length_of_next_chunk >= config.columnSoftLimit)
|
if (currentLineLength + 1 + lengthOfNextChunk >= config.columnSoftLimit)
|
||||||
{
|
{
|
||||||
pushWrapIndent(tok!",");
|
pushWrapIndent(tok!",");
|
||||||
newline();
|
newline();
|
||||||
|
@ -507,7 +509,7 @@ private:
|
||||||
|
|
||||||
void formatSemicolon()
|
void formatSemicolon()
|
||||||
{
|
{
|
||||||
if (parenDepth > 0)
|
if ((parenDepth > 0 && sBraceDepth == 0) || (sBraceDepth > 0 && niBraceDepth > 0))
|
||||||
{
|
{
|
||||||
if (currentLineLength > config.columnSoftLimit)
|
if (currentLineLength > config.columnSoftLimit)
|
||||||
{
|
{
|
||||||
|
@ -534,17 +536,41 @@ private:
|
||||||
|
|
||||||
void formatLeftBrace()
|
void formatLeftBrace()
|
||||||
{
|
{
|
||||||
|
import std.algorithm : map, sum;
|
||||||
|
|
||||||
if (astInformation.structInitStartLocations.canFindIndex(tokens[index].index))
|
if (astInformation.structInitStartLocations.canFindIndex(tokens[index].index))
|
||||||
{
|
{
|
||||||
|
sBraceDepth++;
|
||||||
|
auto e = expressionEndIndex(index);
|
||||||
|
immutable int l = currentLineLength + tokens[index .. e].map!(a => tokenLength(a)).sum();
|
||||||
writeToken();
|
writeToken();
|
||||||
|
if (l > config.columnSoftLimit)
|
||||||
|
{
|
||||||
|
indents.push(tok!"{");
|
||||||
|
newline();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
niBraceDepth++;
|
||||||
}
|
}
|
||||||
else if (astInformation.funLitStartLocations.canFindIndex(tokens[index].index))
|
else if (astInformation.funLitStartLocations.canFindIndex(tokens[index].index))
|
||||||
{
|
{
|
||||||
|
sBraceDepth++;
|
||||||
if (peekBackIs(tok!")"))
|
if (peekBackIs(tok!")"))
|
||||||
write(" ");
|
write(" ");
|
||||||
|
auto e = expressionEndIndex(index);
|
||||||
|
immutable int l = currentLineLength + tokens[index .. e].map!(a => tokenLength(a)).sum();
|
||||||
writeToken();
|
writeToken();
|
||||||
|
if (l > config.columnSoftLimit)
|
||||||
|
{
|
||||||
|
indents.push(tok!"{");
|
||||||
|
newline();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
niBraceDepth++;
|
||||||
write(" ");
|
write(" ");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!justAddedExtraNewline && !peekBackIs(tok!"{")
|
if (!justAddedExtraNewline && !peekBackIs(tok!"{")
|
||||||
|
@ -579,23 +605,26 @@ private:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool peekBackIsSlashSlash()
|
|
||||||
{
|
|
||||||
return index > 0 && tokens[index - 1].type == tok!"comment"
|
|
||||||
&& tokens[index - 1].text[0 .. 2] == "//";
|
|
||||||
}
|
|
||||||
|
|
||||||
void formatRightBrace()
|
void formatRightBrace()
|
||||||
{
|
{
|
||||||
if (!peekBackIsSlashSlash()
|
if (astInformation.structInitEndLocations.canFindIndex(tokens[index].index))
|
||||||
&& astInformation.structInitEndLocations.canFindIndex(tokens[index].index))
|
|
||||||
{
|
{
|
||||||
|
if (sBraceDepth > 0)
|
||||||
|
sBraceDepth--;
|
||||||
|
if (niBraceDepth > 0)
|
||||||
|
niBraceDepth--;
|
||||||
writeToken();
|
writeToken();
|
||||||
}
|
}
|
||||||
else if (!peekBackIsSlashSlash()
|
else if (astInformation.funLitEndLocations.canFindIndex(tokens[index].index))
|
||||||
&& astInformation.funLitEndLocations.canFindIndex(tokens[index].index))
|
|
||||||
{
|
{
|
||||||
|
if (niBraceDepth > 0)
|
||||||
|
{
|
||||||
|
if (!peekBackIsSlashSlash())
|
||||||
write(" ");
|
write(" ");
|
||||||
|
niBraceDepth--;
|
||||||
|
}
|
||||||
|
if (sBraceDepth > 0)
|
||||||
|
sBraceDepth--;
|
||||||
writeToken();
|
writeToken();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -908,21 +937,33 @@ private:
|
||||||
regenLineBreakHintsIfNecessary(index - 1);
|
regenLineBreakHintsIfNecessary(index - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void regenLineBreakHintsIfNecessary(immutable size_t i)
|
void regenLineBreakHints(immutable size_t i)
|
||||||
{
|
|
||||||
if (linebreakHints.length == 0 || linebreakHints[$ - 1] <= i - 1)
|
|
||||||
{
|
{
|
||||||
immutable size_t j = expressionEndIndex(i);
|
immutable size_t j = expressionEndIndex(i);
|
||||||
linebreakHints = chooseLineBreakTokens(i, tokens[i .. j],
|
linebreakHints = chooseLineBreakTokens(i, tokens[i .. j],
|
||||||
depths[i .. j], config, currentLineLength, indentLevel);
|
depths[i .. j], config, currentLineLength, indentLevel);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void regenLineBreakHintsIfNecessary(immutable size_t i)
|
||||||
|
{
|
||||||
|
if (linebreakHints.length == 0 || linebreakHints[$ - 1] <= i - 1)
|
||||||
|
regenLineBreakHints(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t expressionEndIndex(size_t i) const pure @safe @nogc
|
size_t expressionEndIndex(size_t i) const pure @safe @nogc
|
||||||
{
|
{
|
||||||
|
immutable bool braces = i < tokens.length && tokens[i].type == tok!"{";
|
||||||
immutable d = depths[i];
|
immutable d = depths[i];
|
||||||
while (i < tokens.length && depths[i] >= d && tokens[i].type != tok!";")
|
while (true)
|
||||||
|
{
|
||||||
|
if (i >= tokens.length)
|
||||||
|
break;
|
||||||
|
if (depths[i] < d)
|
||||||
|
break;
|
||||||
|
if (!braces && tokens[i].type == tok!";")
|
||||||
|
break;
|
||||||
i++;
|
i++;
|
||||||
|
}
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1073,6 +1114,12 @@ private:
|
||||||
return peekImplementation(tokenType, 1, ignoreComments);
|
return peekImplementation(tokenType, 1, ignoreComments);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool peekBackIsSlashSlash()
|
||||||
|
{
|
||||||
|
return index > 0 && tokens[index - 1].type == tok!"comment"
|
||||||
|
&& tokens[index - 1].text[0 .. 2] == "//";
|
||||||
|
}
|
||||||
|
|
||||||
bool currentIs(IdType tokenType, bool ignoreComments = false)
|
bool currentIs(IdType tokenType, bool ignoreComments = false)
|
||||||
{
|
{
|
||||||
return peekImplementation(tokenType, 0, ignoreComments);
|
return peekImplementation(tokenType, 0, ignoreComments);
|
||||||
|
@ -1115,8 +1162,10 @@ private:
|
||||||
|
|
||||||
immutable bool hasCurrent = index + 1 < tokens.length;
|
immutable bool hasCurrent = index + 1 < tokens.length;
|
||||||
|
|
||||||
if (!peekBackIsSlashSlash() && hasCurrent && tokens[index].type == tok!"}"
|
if (niBraceDepth > 0 && !peekBackIsSlashSlash() && hasCurrent
|
||||||
&& !assumeSorted(astInformation.funLitEndLocations).equalRange(tokens[index].index).empty)
|
&& tokens[index].type == tok!"}"
|
||||||
|
&& !assumeSorted(astInformation.funLitEndLocations).equalRange(
|
||||||
|
tokens[index].index).empty)
|
||||||
{
|
{
|
||||||
write(" ");
|
write(" ");
|
||||||
return;
|
return;
|
||||||
|
@ -1325,6 +1374,10 @@ private:
|
||||||
|
|
||||||
int parenDepth;
|
int parenDepth;
|
||||||
|
|
||||||
|
int sBraceDepth;
|
||||||
|
|
||||||
|
int niBraceDepth;
|
||||||
|
|
||||||
bool spaceAfterParens;
|
bool spaceAfterParens;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1659,6 +1712,7 @@ bool isBreakToken(IdType t)
|
||||||
case tok!"[":
|
case tok!"[":
|
||||||
case tok!",":
|
case tok!",":
|
||||||
case tok!":":
|
case tok!":":
|
||||||
|
case tok!";":
|
||||||
case tok!"^^":
|
case tok!"^^":
|
||||||
case tok!"^=":
|
case tok!"^=":
|
||||||
case tok!"^":
|
case tok!"^":
|
||||||
|
@ -1720,6 +1774,7 @@ int breakCost(IdType t)
|
||||||
case tok!"[":
|
case tok!"[":
|
||||||
return 400;
|
return 400;
|
||||||
case tok!":":
|
case tok!":":
|
||||||
|
case tok!";":
|
||||||
case tok!"^^":
|
case tok!"^^":
|
||||||
case tok!"^=":
|
case tok!"^=":
|
||||||
case tok!"^":
|
case tok!"^":
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
auto fun = function() { };
|
||||||
|
auto fun = () { };
|
||||||
|
auto fun = {};
|
||||||
|
|
||||||
|
auto fun = { int i; };
|
||||||
|
|
||||||
|
auto fun = { int i; int i; int i; int i; };
|
||||||
|
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
callFunc({ int i = 10; return i; });
|
||||||
|
callFunc({
|
||||||
|
int i = 10;
|
||||||
|
foo(alpha, bravo, charlie, delta, echo, foxtrot, golf, echo);
|
||||||
|
doStuff(withThings, andOtherStuff);
|
||||||
|
return i;
|
||||||
|
});
|
||||||
|
callFunc({
|
||||||
|
int i = 10;
|
||||||
|
foo(alpha_longVarName, bravo_longVarName, charlie_longVarName, delta_longVarName,
|
||||||
|
echo_longVarName, foxtrot_longVarName, golf_longVarName, echo_longVarName);
|
||||||
|
doStuff(withThings, andOtherStuff);
|
||||||
|
return i;
|
||||||
|
}, more_stuff);
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
auto fun = function() { };
|
||||||
|
auto fun = () { };
|
||||||
|
auto fun = {};
|
||||||
|
|
||||||
|
auto fun = { int i; };
|
||||||
|
|
||||||
|
auto fun = { int i; int i; int i; int i; };
|
||||||
|
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
callFunc({ int i = 10; return i; });
|
||||||
|
callFunc({int i = 10; foo(alpha, bravo, charlie, delta, echo, foxtrot, golf, echo); doStuff(withThings, andOtherStuff); return i; });
|
||||||
|
callFunc({int i = 10; foo(alpha_longVarName, bravo_longVarName, charlie_longVarName, delta_longVarName, echo_longVarName, foxtrot_longVarName, golf_longVarName, echo_longVarName); doStuff(withThings, andOtherStuff); return i; }, more_stuff);
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
auto fun = function() { };
|
||||||
|
auto fun = () { };
|
||||||
|
auto fun = {};
|
||||||
|
|
||||||
|
auto fun = { int i; };
|
||||||
|
|
||||||
|
auto fun = { int i; int i; int i; int i; };
|
||||||
|
|
||||||
|
unittest {
|
||||||
|
callFunc({ int i = 10; return i; });
|
||||||
|
callFunc({
|
||||||
|
int i = 10;
|
||||||
|
foo(alpha, bravo, charlie, delta, echo, foxtrot, golf, echo);
|
||||||
|
doStuff(withThings, andOtherStuff);
|
||||||
|
return i;
|
||||||
|
});
|
||||||
|
callFunc({
|
||||||
|
int i = 10;
|
||||||
|
foo(alpha_longVarName, bravo_longVarName, charlie_longVarName, delta_longVarName,
|
||||||
|
echo_longVarName, foxtrot_longVarName, golf_longVarName, echo_longVarName);
|
||||||
|
doStuff(withThings, andOtherStuff);
|
||||||
|
return i;
|
||||||
|
}, more_stuff);
|
||||||
|
}
|
Loading…
Reference in New Issue