This commit is contained in:
Hackerpilot 2015-03-04 13:42:08 -08:00
parent 26e7212e0a
commit b98a1abea5
3 changed files with 19 additions and 1 deletions

View File

@ -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;

5
tests/issue0018.d Normal file
View File

@ -0,0 +1,5 @@
import core.stdc.ctype;
/*********************************************
*
*/

5
tests/issue0018.d.ref Normal file
View File

@ -0,0 +1,5 @@
import core.stdc.ctype;
/*********************************************
*
*/