Fix #216
This commit is contained in:
parent
c53eb5e0e4
commit
75c3278a32
|
@ -318,6 +318,8 @@ private:
|
||||||
{
|
{
|
||||||
immutable t = tokens[index - 1].type;
|
immutable t = tokens[index - 1].type;
|
||||||
immutable canAddNewline = currTokenLine - prevTokenEndLine < 1;
|
immutable canAddNewline = currTokenLine - prevTokenEndLine < 1;
|
||||||
|
if (peekBackIsOperator() && !isSeparationToken(t))
|
||||||
|
pushWrapIndent(t);
|
||||||
if (prevTokenEndLine == currTokenLine || (t == tok!")" && peekIs(tok!"{")))
|
if (prevTokenEndLine == currTokenLine || (t == tok!")" && peekIs(tok!"{")))
|
||||||
write(" ");
|
write(" ");
|
||||||
else if (canAddNewline || (peekIs(tok!"{") && t == tok!"}"))
|
else if (canAddNewline || (peekIs(tok!"{") && t == tok!"}"))
|
||||||
|
@ -1047,8 +1049,7 @@ private:
|
||||||
case tok!"..":
|
case tok!"..":
|
||||||
case tok!"%":
|
case tok!"%":
|
||||||
binary:
|
binary:
|
||||||
immutable bool isWrapToken = linebreakHints.canFind(index)
|
immutable bool isWrapToken = linebreakHints.canFind(index);
|
||||||
|| peekIs(tok!"comment", false);
|
|
||||||
if (config.dfmt_split_operator_at_line_end)
|
if (config.dfmt_split_operator_at_line_end)
|
||||||
{
|
{
|
||||||
if (isWrapToken)
|
if (isWrapToken)
|
||||||
|
@ -1062,7 +1063,8 @@ private:
|
||||||
{
|
{
|
||||||
write(" ");
|
write(" ");
|
||||||
writeToken();
|
writeToken();
|
||||||
write(" ");
|
if (!currentIs(tok!"comment"))
|
||||||
|
write(" ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -1071,11 +1073,15 @@ private:
|
||||||
{
|
{
|
||||||
pushWrapIndent();
|
pushWrapIndent();
|
||||||
newline();
|
newline();
|
||||||
|
writeToken();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
write(" ");
|
||||||
|
writeToken();
|
||||||
|
}
|
||||||
|
if (!currentIs(tok!"comment"))
|
||||||
write(" ");
|
write(" ");
|
||||||
writeToken();
|
|
||||||
write(" ");
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@ -1500,7 +1506,7 @@ const pure @safe @nogc:
|
||||||
return peekImplementation(tokenType, -1, ignoreComments);
|
return peekImplementation(tokenType, -1, ignoreComments);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool peekBackIsKeyword(bool ignoreComments = true) pure nothrow const @nogc @safe
|
bool peekBackIsKeyword(bool ignoreComments = true) nothrow
|
||||||
{
|
{
|
||||||
if (index == 0)
|
if (index == 0)
|
||||||
return false;
|
return false;
|
||||||
|
@ -1515,12 +1521,12 @@ const pure @safe @nogc:
|
||||||
return isKeyword(tokens[i].type);
|
return isKeyword(tokens[i].type);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool peekBackIsOperator() pure nothrow const @nogc @safe
|
bool peekBackIsOperator() nothrow
|
||||||
{
|
{
|
||||||
return index == 0 ? false : isOperator(tokens[index - 1].type);
|
return index == 0 ? false : isOperator(tokens[index - 1].type);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool peekBackIsOneOf(bool ignoreComments, IdType[] tokenTypes...)
|
bool peekBackIsOneOf(bool ignoreComments, IdType[] tokenTypes...) nothrow
|
||||||
{
|
{
|
||||||
if (index == 0)
|
if (index == 0)
|
||||||
return false;
|
return false;
|
||||||
|
@ -1611,6 +1617,12 @@ const pure @safe @nogc:
|
||||||
auto t = tokens[i + index].type;
|
auto t = tokens[i + index].type;
|
||||||
return isBlockHeaderToken(t);
|
return isBlockHeaderToken(t);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool isSeparationToken(IdType t) nothrow
|
||||||
|
{
|
||||||
|
return t == tok!"," || t == tok!";" || t == tok!":" || t == tok!"("
|
||||||
|
|| t == tok!")" || t == tok!"[" || t == tok!"]" || t == tok!"{" || t == tok!"}";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool canFindIndex(const size_t[] items, size_t index) pure @safe @nogc
|
bool canFindIndex(const size_t[] items, size_t index) pure @safe @nogc
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{
|
{
|
||||||
with (CXTypeKind)
|
with (CXTypeKind)
|
||||||
return kind == CXType_FunctionNoProto || kind == CXType_FunctionProto
|
return kind == CXType_FunctionNoProto || kind == CXType_FunctionProto
|
||||||
|| // FIXME: This "hack" shouldn't be needed.
|
|| // FIXME: This "hack" shouldn't be needed.
|
||||||
func.resultType.isValid;
|
func.resultType.isValid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
if (something || somethingElse || // I like putting comments here for no good reason
|
||||||
|
thirdThing)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
if (something || somethingElse
|
||||||
|
|| // I like putting comments here for no good reason
|
||||||
|
thirdThing)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
@property bool isFunctionType() {
|
@property bool isFunctionType() {
|
||||||
with (CXTypeKind)
|
with (CXTypeKind)
|
||||||
return kind == CXType_FunctionNoProto || kind == CXType_FunctionProto
|
return kind == CXType_FunctionNoProto || kind == CXType_FunctionProto
|
||||||
|| // FIXME: This "hack" shouldn't be needed.
|
|| // FIXME: This "hack" shouldn't be needed.
|
||||||
func.resultType.isValid;
|
func.resultType.isValid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
unittest {
|
||||||
|
if (something || somethingElse || // I like putting comments here for no good reason
|
||||||
|
thirdThing) {
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue