tuning whitespace around comments
This commit is contained in:
parent
158c679349
commit
8983dc8b15
20
src/dfmt.d
20
src/dfmt.d
|
@ -115,9 +115,26 @@ private:
|
|||
assert (index < tokens.length);
|
||||
if (current.type == tok!"comment")
|
||||
{
|
||||
writeToken();
|
||||
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();
|
||||
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)
|
||||
|| current.type == tok!"characterLiteral")
|
||||
{
|
||||
|
@ -245,6 +262,7 @@ private:
|
|||
case tok!";":
|
||||
tempIndent = 0;
|
||||
writeToken();
|
||||
if (current.type != tok!"comment")
|
||||
newline();
|
||||
break;
|
||||
case tok!"{":
|
||||
|
|
|
@ -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