Fix #140
This commit is contained in:
parent
04f6684a50
commit
bb3ee5df18
|
@ -1 +1 @@
|
||||||
Subproject commit 256b979f3b53c3367b6556c5b68e9cc76ceaf391
|
Subproject commit ccb3d98996f89cfb35799aee6358e640f6f71f67
|
|
@ -475,8 +475,19 @@ private:
|
||||||
linebreakHints = [];
|
linebreakHints = [];
|
||||||
while (indents.topIs(tok!"enum"))
|
while (indents.topIs(tok!"enum"))
|
||||||
indents.pop();
|
indents.pop();
|
||||||
|
if (config.dfmt_brace_style == BraceStyle.allman)
|
||||||
|
{
|
||||||
|
if (!currentIs(tok!"{"))
|
||||||
newline();
|
newline();
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (currentIs(tok!"{"))
|
||||||
|
indents.popTempIndents();
|
||||||
|
indentLevel = indents.indentSize;
|
||||||
|
newline();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void formatLeftBrace()
|
void formatLeftBrace()
|
||||||
|
@ -517,31 +528,29 @@ private:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
|
||||||
if (!justAddedExtraNewline && !peekBackIsOneOf(false, tok!"{",
|
|
||||||
tok!"}", tok!";", tok!";"))
|
|
||||||
{
|
|
||||||
if (config.dfmt_brace_style != BraceStyle.allman)
|
|
||||||
{
|
|
||||||
if (!astInformation.structInitStartLocations.canFindIndex(tokens[index].index)
|
|
||||||
&& !astInformation.funLitStartLocations.canFindIndex(
|
|
||||||
tokens[index].index))
|
|
||||||
{
|
{
|
||||||
indents.popWrapIndents();
|
indents.popWrapIndents();
|
||||||
indents.push(tok!"{");
|
if (indents.length && isTempIndent(indents.top))
|
||||||
if (index == 1 || peekBackIsOneOf(true, tok!":", tok!"{",
|
indentLevel = indents.indentSize - 1;
|
||||||
tok!"}", tok!")", tok!";"))
|
else
|
||||||
|
indentLevel = indents.indentSize;
|
||||||
|
|
||||||
|
if (!peekBackIsSlashSlash())
|
||||||
{
|
{
|
||||||
|
if (config.dfmt_brace_style == BraceStyle.allman || peekBackIsOneOf(true, tok!"{", tok!"}"))
|
||||||
|
newline();
|
||||||
|
else if (!peekBackIsOneOf(true, tok!"{", tok!"}", tok!";"))
|
||||||
|
write(" ");
|
||||||
|
writeToken();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
writeToken();
|
||||||
|
indents.popTempIndents();
|
||||||
indentLevel = indents.indentSize - 1;
|
indentLevel = indents.indentSize - 1;
|
||||||
}
|
}
|
||||||
}
|
indents.push(tok!"{");
|
||||||
write(" ");
|
if (!currentIs(tok!"{"))
|
||||||
}
|
|
||||||
else if (index > 0 && (!peekBackIs(tok!"comment")
|
|
||||||
|| tokens[index - 1].text[0 .. 2] != "//"))
|
|
||||||
newline();
|
|
||||||
}
|
|
||||||
writeToken();
|
|
||||||
newline();
|
newline();
|
||||||
linebreakHints = [];
|
linebreakHints = [];
|
||||||
}
|
}
|
||||||
|
@ -584,9 +593,9 @@ private:
|
||||||
currentLineLength = 0;
|
currentLineLength = 0;
|
||||||
justAddedExtraNewline = true;
|
justAddedExtraNewline = true;
|
||||||
}
|
}
|
||||||
if (config.dfmt_brace_style == BraceStyle.otbs && currentIs(tok!"else"))
|
if (config.dfmt_brace_style != BraceStyle.allman && currentIs(tok!"else"))
|
||||||
write(" ");
|
write(" ");
|
||||||
if (!peekIs(tok!",") && !peekIs(tok!")") && !peekIs(tok!";"))
|
if (!peekIs(tok!",") && !peekIs(tok!")") && !peekIs(tok!";") && !peekIs(tok!"{"))
|
||||||
{
|
{
|
||||||
index++;
|
index++;
|
||||||
newline();
|
newline();
|
||||||
|
@ -967,7 +976,7 @@ private:
|
||||||
if (currentIs(tok!"comment") && index > 0 && current.line == tokenEndLine(tokens[index - 1]))
|
if (currentIs(tok!"comment") && index > 0 && current.line == tokenEndLine(tokens[index - 1]))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
immutable bool hasCurrent = index + 1 < tokens.length;
|
immutable bool hasCurrent = index < tokens.length;
|
||||||
|
|
||||||
if (niBraceDepth > 0 && !peekBackIsSlashSlash() && hasCurrent
|
if (niBraceDepth > 0 && !peekBackIsSlashSlash() && hasCurrent
|
||||||
&& tokens[index].type == tok!"}" && !assumeSorted(
|
&& tokens[index].type == tok!"}" && !assumeSorted(
|
||||||
|
@ -1031,16 +1040,13 @@ private:
|
||||||
if (l != -1)
|
if (l != -1)
|
||||||
indentLevel = l;
|
indentLevel = l;
|
||||||
}
|
}
|
||||||
else if (currentIs(tok!"{")
|
else if (currentIs(tok!"{"))
|
||||||
&& !astInformation.structInitStartLocations.canFindIndex(tokens[index].index)
|
|
||||||
&& !astInformation.funLitStartLocations.canFindIndex(tokens[index].index))
|
|
||||||
{
|
{
|
||||||
indents.popWrapIndents();
|
indents.popWrapIndents();
|
||||||
indents.push(tok!"{");
|
if (peekBackIsSlashSlash())
|
||||||
if (index == 1 || peekBackIsOneOf(true, tok!":", tok!"{",
|
|
||||||
tok!"}", tok!")", tok!";", tok!"identifier") || peekBackIsKeyword())
|
|
||||||
{
|
{
|
||||||
indentLevel = indents.indentSize - 1;
|
indents.popTempIndents();
|
||||||
|
indentLevel = indents.indentSize;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (currentIs(tok!"}"))
|
else if (currentIs(tok!"}"))
|
||||||
|
@ -1051,8 +1057,7 @@ private:
|
||||||
indentLevel = indents.indentToMostRecent(tok!"{");
|
indentLevel = indents.indentToMostRecent(tok!"{");
|
||||||
indents.pop();
|
indents.pop();
|
||||||
}
|
}
|
||||||
while (indents.length && isTempIndent(indents.top)
|
while (indents.topIsTemp() && ((indents.top != tok!"if"
|
||||||
&& ((indents.top != tok!"if"
|
|
||||||
&& indents.top != tok!"version") || !peekIs(tok!"else")))
|
&& indents.top != tok!"version") || !peekIs(tok!"else")))
|
||||||
{
|
{
|
||||||
indents.pop();
|
indents.pop();
|
||||||
|
@ -1075,8 +1080,7 @@ private:
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
while (indents.length && (peekBackIsOneOf(true, tok!"}",
|
while (indents.topIsTemp() && (peekBackIsOneOf(true, tok!"}", tok!";") && indents.top != tok!";"))
|
||||||
tok!";") && indents.top != tok!";") && isTempIndent(indents.top()))
|
|
||||||
{
|
{
|
||||||
indents.pop();
|
indents.pop();
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,6 +75,16 @@ struct IndentStack
|
||||||
return index > 0 && arr[index] == type;
|
return index > 0 && arr[index] == type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool topIsTemp()
|
||||||
|
{
|
||||||
|
return index > 0 && index < arr.length && isTempIndent(arr[index]);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool topIsWrap()
|
||||||
|
{
|
||||||
|
return index > 0 && index < arr.length && isWrapIndent(arr[index]);
|
||||||
|
}
|
||||||
|
|
||||||
bool topIsOneOf(IdType[] types...) const pure nothrow @safe @nogc
|
bool topIsOneOf(IdType[] types...) const pure nothrow @safe @nogc
|
||||||
{
|
{
|
||||||
if (index <= 0)
|
if (index <= 0)
|
||||||
|
|
|
@ -32,4 +32,5 @@ string generateFixedLengthCases()
|
||||||
"=>", ">", ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[", "]", "^",
|
"=>", ">", ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[", "]", "^",
|
||||||
"^=", "^^", "^^=", "{", "|", "|=", "||", "}", "~", "~="
|
"^=", "^^", "^^=", "{", "|", "|=", "||", "}", "~", "~="
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,4 +24,5 @@ struct ClassFlags
|
||||||
alias isAbstract = Enum.isAbstract;
|
alias isAbstract = Enum.isAbstract;
|
||||||
alias isCPPclass = Enum.isCPPclass;
|
alias isCPPclass = Enum.isCPPclass;
|
||||||
alias hasDtor = Enum.hasDtor;
|
alias hasDtor = Enum.hasDtor;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
class C
|
||||||
|
{
|
||||||
|
|
||||||
|
int foo;
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
class C
|
||||||
|
{
|
||||||
|
|
||||||
|
int foo;
|
||||||
|
|
||||||
|
}
|
|
@ -31,4 +31,5 @@ string generateFixedLengthCases() {
|
||||||
"=>", ">", ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[", "]", "^",
|
"=>", ">", ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[", "]", "^",
|
||||||
"^=", "^^", "^^=", "{", "|", "|=", "||", "}", "~", "~="
|
"^=", "^^", "^^=", "{", "|", "|=", "||", "}", "~", "~="
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,4 +22,5 @@ struct ClassFlags {
|
||||||
alias isAbstract = Enum.isAbstract;
|
alias isAbstract = Enum.isAbstract;
|
||||||
alias isCPPclass = Enum.isCPPclass;
|
alias isCPPclass = Enum.isCPPclass;
|
||||||
alias hasDtor = Enum.hasDtor;
|
alias hasDtor = Enum.hasDtor;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
class C {
|
||||||
|
|
||||||
|
int foo;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue