Implemented numeric constants
This commit is contained in:
@ -13,7 +13,7 @@ func (list List) String() string {
|
||||
var last Token
|
||||
|
||||
for _, t := range list {
|
||||
if t.Kind == Identifier && last.Kind == Separator {
|
||||
if last.Kind == Keyword || last.Kind == Separator {
|
||||
builder.WriteByte(' ')
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user