Fix #140
This commit is contained in:
parent
04f6684a50
commit
bb3ee5df18
|
@ -1 +1 @@
|
||||||
Subproject commit 256b979f3b53c3367b6556c5b68e9cc76ceaf391
|
Subproject commit ccb3d98996f89cfb35799aee6358e640f6f71f67
|
|
@ -475,7 +475,18 @@ private:
|
||||||
linebreakHints = [];
|
linebreakHints = [];
|
||||||
while (indents.topIs(tok!"enum"))
|
while (indents.topIs(tok!"enum"))
|
||||||
indents.pop();
|
indents.pop();
|
||||||
newline();
|
if (config.dfmt_brace_style == BraceStyle.allman)
|
||||||
|
{
|
||||||
|
if (!currentIs(tok!"{"))
|
||||||
|
newline();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (currentIs(tok!"{"))
|
||||||
|
indents.popTempIndents();
|
||||||
|
indentLevel = indents.indentSize;
|
||||||
|
newline();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -518,31 +529,29 @@ private:
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!justAddedExtraNewline && !peekBackIsOneOf(false, tok!"{",
|
indents.popWrapIndents();
|
||||||
tok!"}", tok!";", tok!";"))
|
if (indents.length && isTempIndent(indents.top))
|
||||||
|
indentLevel = indents.indentSize - 1;
|
||||||
|
else
|
||||||
|
indentLevel = indents.indentSize;
|
||||||
|
|
||||||
|
if (!peekBackIsSlashSlash())
|
||||||
{
|
{
|
||||||
if (config.dfmt_brace_style != BraceStyle.allman)
|
if (config.dfmt_brace_style == BraceStyle.allman || peekBackIsOneOf(true, tok!"{", tok!"}"))
|
||||||
{
|
|
||||||
if (!astInformation.structInitStartLocations.canFindIndex(tokens[index].index)
|
|
||||||
&& !astInformation.funLitStartLocations.canFindIndex(
|
|
||||||
tokens[index].index))
|
|
||||||
{
|
|
||||||
indents.popWrapIndents();
|
|
||||||
indents.push(tok!"{");
|
|
||||||
if (index == 1 || peekBackIsOneOf(true, tok!":", tok!"{",
|
|
||||||
tok!"}", tok!")", tok!";"))
|
|
||||||
{
|
|
||||||
indentLevel = indents.indentSize - 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
write(" ");
|
|
||||||
}
|
|
||||||
else if (index > 0 && (!peekBackIs(tok!"comment")
|
|
||||||
|| tokens[index - 1].text[0 .. 2] != "//"))
|
|
||||||
newline();
|
newline();
|
||||||
|
else if (!peekBackIsOneOf(true, tok!"{", tok!"}", tok!";"))
|
||||||
|
write(" ");
|
||||||
|
writeToken();
|
||||||
}
|
}
|
||||||
writeToken();
|
else
|
||||||
newline();
|
{
|
||||||
|
writeToken();
|
||||||
|
indents.popTempIndents();
|
||||||
|
indentLevel = indents.indentSize - 1;
|
||||||
|
}
|
||||||
|
indents.push(tok!"{");
|
||||||
|
if (!currentIs(tok!"{"))
|
||||||
|
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() {
|
||||||
"=>", ">", ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[", "]", "^",
|
"=>", ">", ">=", ">>", ">>=", ">>>", ">>>=", "?", "@", "[", "]", "^",
|
||||||
"^=", "^^", "^^=", "{", "|", "|=", "||", "}", "~", "~="
|
"^=", "^^", "^^=", "{", "|", "|=", "||", "}", "~", "~="
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,38 +7,38 @@ SignExtendedNumber opMul(const SignExtendedNumber a) const {
|
||||||
|
|
||||||
unittest {
|
unittest {
|
||||||
if (Port.isNan(r1) || Port.isNan(r2)) // if unordered
|
if (Port.isNan(r1) || Port.isNan(r2)) // if unordered
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
while (cur && cur.ty == Tsarray) // sizes of dimensions
|
while (cur && cur.ty == Tsarray) // sizes of dimensions
|
||||||
{
|
{
|
||||||
TypeSArray sa = cast(TypeSArray) cur;
|
TypeSArray sa = cast(TypeSArray) cur;
|
||||||
mangleNumber(sa.dim ? sa.dim.toInteger() : 0);
|
mangleNumber(sa.dim ? sa.dim.toInteger() : 0);
|
||||||
cur = cur.nextOf();
|
cur = cur.nextOf();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fd) {
|
if (fd) {
|
||||||
/* Use storage_class2 instead of storage_class otherwise when we do .di generation
|
/* Use storage_class2 instead of storage_class otherwise when we do .di generation
|
||||||
* we'll wind up with 'const const' rather than 'const'.
|
* we'll wind up with 'const const' rather than 'const'.
|
||||||
*/
|
*/
|
||||||
/* Don't think we need to worry about mutually exclusive storage classes here
|
/* Don't think we need to worry about mutually exclusive storage classes here
|
||||||
*/
|
*/
|
||||||
fd.storage_class2 |= stc;
|
fd.storage_class2 |= stc;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SignExtendedNumber opMul(const SignExtendedNumber a) const {
|
SignExtendedNumber opMul(const SignExtendedNumber a) const {
|
||||||
/* Special handling for zeros:
|
/* Special handling for zeros:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// like 0x10 * 0x10 == 0x100 == 0.
|
// like 0x10 * 0x10 == 0x100 == 0.
|
||||||
}
|
}
|
||||||
|
|
||||||
// Because int64_t and friends may be any integral type of the
|
// Because int64_t and friends may be any integral type of the
|
||||||
// correct size, we have to explicitly ask for the correct
|
// correct size, we have to explicitly ask for the correct
|
||||||
// integer type to get the correct mangling with ddmd
|
// integer type to get the correct mangling with ddmd
|
||||||
|
|
||||||
// Be careful not to care about sign when using dinteger_t
|
// Be careful not to care about sign when using dinteger_t
|
||||||
// use this instead of integer_t to
|
// use this instead of integer_t to
|
||||||
// avoid conflicts with system #include's
|
// avoid conflicts with system #include's
|
||||||
|
|
|
@ -2,11 +2,11 @@ void f() {
|
||||||
if (a) {
|
if (a) {
|
||||||
}
|
}
|
||||||
else // wat
|
else // wat
|
||||||
{
|
{
|
||||||
if (!is_temp_arg_ref) {
|
if (!is_temp_arg_ref) {
|
||||||
if (global.params.isOSX)
|
if (global.params.isOSX)
|
||||||
buf.writeByte('_');
|
buf.writeByte('_');
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return;
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
unittest {
|
unittest {
|
||||||
if (!fdmatch)
|
if (!fdmatch)
|
||||||
goto Lfd; // comment
|
goto Lfd; // comment
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
class C {
|
||||||
|
|
||||||
|
int foo;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue