This commit is contained in:
Hackerpilot 2015-03-05 17:09:50 -08:00
parent 51855cf192
commit 05c575f1e8
3 changed files with 18 additions and 6 deletions

View File

@ -317,13 +317,8 @@ private:
if (index + 1 < tokens.length)
{
auto next = tokens[index + 1];
if (next.type == tok!";" || next.type == tok!"("
|| next.type == tok!")" || next.type == tok!","
|| next.type == tok!"{" || next.type == tok!"."
|| next.type == tok!":" || next.type == tok!"*")
{
if (peekIsOperator())
writeToken();
}
else
{
writeToken();
@ -848,6 +843,11 @@ private:
return peekImplementation(tokenType, 2);
}
bool peekIsOperator()
{
return index + 1 < tokens.length && isOperator(tokens[index + 1].type);
}
bool peekIs(IdType tokenType)
{
return peekImplementation(tokenType, 1);

5
tests/issue0032.d Normal file
View File

@ -0,0 +1,5 @@
SignExtendedNumber opSub(const SignExtendedNumber a) const
{
if (a.isMinimum()) return negative? SignExtendedNumber(value, false) : max();
else return this+( -a);
}

7
tests/issue0032.d.ref Normal file
View File

@ -0,0 +1,7 @@
SignExtendedNumber opSub(const SignExtendedNumber a) const
{
if (a.isMinimum())
return negative ? SignExtendedNumber(value, false) : max();
else
return this + (-a);
}