tuning whitespace around comments
This commit is contained in:
parent
158c679349
commit
8983dc8b15
22
src/dfmt.d
22
src/dfmt.d
|
@ -115,8 +115,25 @@ private:
|
||||||
assert (index < tokens.length);
|
assert (index < tokens.length);
|
||||||
if (current.type == tok!"comment")
|
if (current.type == tok!"comment")
|
||||||
{
|
{
|
||||||
|
const i = index;
|
||||||
|
if (i > 0)
|
||||||
|
{
|
||||||
|
if (tokens[i-1].line < tokens[i].line)
|
||||||
|
{
|
||||||
|
if (tokens[i-1].type != tok!"comment"
|
||||||
|
&& tokens[i-1].type != tok!"{")
|
||||||
|
newline();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
write(" ");
|
||||||
|
}
|
||||||
writeToken();
|
writeToken();
|
||||||
newline();
|
if (i >= tokens.length-1)
|
||||||
|
newline();
|
||||||
|
else if (tokens[i+1].line > tokens[i].line)
|
||||||
|
newline();
|
||||||
|
else if (tokens[i+1].type != tok!"{")
|
||||||
|
write(" ");
|
||||||
}
|
}
|
||||||
else if (isStringLiteral(current.type) || isNumberLiteral(current.type)
|
else if (isStringLiteral(current.type) || isNumberLiteral(current.type)
|
||||||
|| current.type == tok!"characterLiteral")
|
|| current.type == tok!"characterLiteral")
|
||||||
|
@ -245,7 +262,8 @@ private:
|
||||||
case tok!";":
|
case tok!";":
|
||||||
tempIndent = 0;
|
tempIndent = 0;
|
||||||
writeToken();
|
writeToken();
|
||||||
newline();
|
if (current.type != tok!"comment")
|
||||||
|
newline();
|
||||||
break;
|
break;
|
||||||
case tok!"{":
|
case tok!"{":
|
||||||
writeBraces();
|
writeBraces();
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
int /*sneaky*/ foo( /*comments*/ ) /*everywhere*/ {
|
||||||
|
// comment on its own line
|
||||||
|
foo() // comment on same line
|
||||||
|
.bar(); // also on same line
|
||||||
|
/* again */ // same line
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
int /*sneaky*/ foo( /*comments*/ ) /*everywhere*/
|
||||||
|
{
|
||||||
|
// comment on its own line
|
||||||
|
foo() // comment on same line
|
||||||
|
.bar(); // also on same line
|
||||||
|
/* again */ // same line
|
||||||
|
}
|
Loading…
Reference in New Issue