1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

token: change 'STR' kind to 'string'

This commit is contained in:
yuyi
2020-05-07 22:26:22 +08:00
committed by GitHub
parent ab30e81ab5
commit d096763f62

View File

@ -147,7 +147,7 @@ fn build_token_str() []string {
s[Kind.eof] = 'eof'
s[Kind.name] = 'name'
s[Kind.number] = 'number'
s[Kind.string] = 'STR'
s[Kind.string] = 'string'
s[Kind.chartoken] = 'char'
s[Kind.plus] = '+'
s[Kind.minus] = '-'