Fix problem with identifiers and keywords being combined intobigidentifiers
This commit is contained in:
parent
39fadba85c
commit
43d84337d4
|
@ -326,7 +326,7 @@ private:
|
|||
else if (current.type == tok!"identifier")
|
||||
{
|
||||
writeToken();
|
||||
if (current.type == tok!"identifier")
|
||||
if (current.type == tok!"identifier" || isKeyword(current.type))
|
||||
write(" ");
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue