Fix #18
This commit is contained in:
parent
26e7212e0a
commit
b98a1abea5
10
src/dfmt.d
10
src/dfmt.d
|
@ -201,6 +201,8 @@ private:
|
|||
else
|
||||
newline();
|
||||
}
|
||||
else
|
||||
newline();
|
||||
}
|
||||
else if (isStringLiteral(current.type) || isNumberLiteral(current.type)
|
||||
|| current.type == tok!"characterLiteral")
|
||||
|
@ -228,7 +230,7 @@ private:
|
|||
newline();
|
||||
break;
|
||||
}
|
||||
if (current.type == tok!"comment")
|
||||
if (current.type == tok!"comment" && current.line == peekBack().line)
|
||||
break;
|
||||
if (!(t == tok!"import" && current.type == tok!"import"))
|
||||
write("\n");
|
||||
|
@ -799,6 +801,12 @@ private:
|
|||
return tokens[index];
|
||||
}
|
||||
|
||||
const(Token) peekBack()
|
||||
{
|
||||
assert (index > 0);
|
||||
return tokens[index - 1];
|
||||
}
|
||||
|
||||
bool peekBackIs(IdType tokenType)
|
||||
{
|
||||
return (index >= 1) && tokens[index - 1].type == tokenType;
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
import core.stdc.ctype;
|
||||
|
||||
/*********************************************
|
||||
*
|
||||
*/
|
|
@ -0,0 +1,5 @@
|
|||
import core.stdc.ctype;
|
||||
|
||||
/*********************************************
|
||||
*
|
||||
*/
|
Loading…
Reference in New Issue