Fix #286 - Weird indentation in else branch after wrapping expression

This commit is contained in:
Laurent Tréguier 2018-10-07 14:08:52 +02:00
parent 886903f8ea
commit 0ac3f1b291
No known key found for this signature in database
GPG Key ID: 09530BFFC32D4A69
4 changed files with 44 additions and 0 deletions

View File

@ -730,6 +730,7 @@ private:
else
{
writeToken();
indents.popWrapIndents();
linebreakHints = [];
while (indents.topIs(tok!"enum"))
indents.pop();

View File

@ -0,0 +1,16 @@
void foo()
{
if (true)
enum vectorizeable = aLongExpressionThatCausesWrapping()
&& aLongExpressionThatCausesWrapping();
else
enum vectorizeable = false;
if (true)
{
enum vectorizeable = aLongExpressionThatCausesWrapping()
&& aLongExpressionThatCausesWrapping();
}
else
enum vectorizeable = false;
}

14
tests/issue0286.d Normal file
View File

@ -0,0 +1,14 @@
void foo()
{
if (true)
enum vectorizeable = aLongExpressionThatCausesWrapping()
&& aLongExpressionThatCausesWrapping();
else
enum vectorizeable = false;
if (true){
enum vectorizeable = aLongExpressionThatCausesWrapping()
&& aLongExpressionThatCausesWrapping();}
else
enum vectorizeable = false;
}

View File

@ -0,0 +1,13 @@
void foo() {
if (true)
enum vectorizeable = aLongExpressionThatCausesWrapping()
&& aLongExpressionThatCausesWrapping();
else
enum vectorizeable = false;
if (true) {
enum vectorizeable = aLongExpressionThatCausesWrapping()
&& aLongExpressionThatCausesWrapping();
} else
enum vectorizeable = false;
}