Fix label formatting

This commit is contained in:
Hackerpilot 2015-02-22 01:04:00 -08:00
parent aec0b1d6b7
commit 24d78d8869
1 changed files with 11 additions and 0 deletions

View File

@ -376,6 +376,12 @@ private:
writeToken(); writeToken();
newline(); newline();
} }
else if (peekBackIs(tok!"identifier") && (peekBack2Is(tok!";")
|| peekBack2Is(tok!"}") || peekBack2Is(tok!"{")))
{
writeToken();
write(" ");
}
else else
{ {
write(" : "); write(" : ");
@ -771,6 +777,11 @@ private:
return (index >= 1) && tokens[index - 1].type == tokenType; return (index >= 1) && tokens[index - 1].type == tokenType;
} }
bool peekBack2Is(IdType tokenType)
{
return (index >= 2) && tokens[index - 2].type == tokenType;
}
bool peekImplementation(IdType tokenType, size_t n) bool peekImplementation(IdType tokenType, size_t n)
{ {
auto i = index + n; auto i = index + n;