Fix #32
This commit is contained in:
parent
51855cf192
commit
05c575f1e8
12
src/dfmt.d
12
src/dfmt.d
|
@ -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);
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
SignExtendedNumber opSub(const SignExtendedNumber a) const
|
||||
{
|
||||
if (a.isMinimum()) return negative? SignExtendedNumber(value, false) : max();
|
||||
else return this+( -a);
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
SignExtendedNumber opSub(const SignExtendedNumber a) const
|
||||
{
|
||||
if (a.isMinimum())
|
||||
return negative ? SignExtendedNumber(value, false) : max();
|
||||
else
|
||||
return this + (-a);
|
||||
}
|
Loading…
Reference in New Issue