Put some space before @
This commit is contained in:
parent
feb75b4d3b
commit
0f337b0a15
src
|
@ -403,7 +403,8 @@ private:
|
|||
else if (current.type == tok!"identifier")
|
||||
{
|
||||
writeToken();
|
||||
if (current.type == tok!"identifier" || isKeyword(current.type))
|
||||
if (current.type == tok!"identifier" || isKeyword(current.type)
|
||||
|| current.type == tok!"@")
|
||||
write(" ");
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue