return is a keyword

This commit is contained in:
Wolfgang Bumiller 2012-07-26 23:18:15 +02:00
parent 308e24a4d9
commit 331c00dd50

View file

@ -583,6 +583,7 @@ int lex_do(lex_file *lex)
!strcmp(v, "while") || !strcmp(v, "while") ||
!strcmp(v, "do") || !strcmp(v, "do") ||
!strcmp(v, "var") || !strcmp(v, "var") ||
!strcmp(v, "return") ||
!strcmp(v, "const")) !strcmp(v, "const"))
lex->tok->ttype = TOKEN_KEYWORD; lex->tok->ttype = TOKEN_KEYWORD;