From 75ab0e666362fea2ffd801d6ce623962632425f0 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Sat, 1 Dec 2012 00:33:07 +0100 Subject: [PATCH] and 'const' is a keyword, not an ident --- parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.c b/parser.c index 01e3691..f6a3024 100644 --- a/parser.c +++ b/parser.c @@ -4175,7 +4175,7 @@ static bool parser_global_statement(parser_t *parser) parseerror(parser, "expected variable declaration after 'var'"); return false; } - if (parser->tok == TOKEN_IDENT && !strcmp(parser_tokval(parser), "const")) { + if (parser->tok == TOKEN_KEYWORD && !strcmp(parser_tokval(parser), "const")) { (void)!parsewarning(parser, WARN_CONST_VAR, "ignoring `const` after 'var' qualifier"); if (!parser_next(parser)) { parseerror(parser, "expected variable declaration after 'const var'"); -- 2.39.2