Fix preparsing of variable declaration lists, which are not divided by a semicolon.

JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
This commit is contained in:
Andrey Shitov 2015-07-10 18:35:06 +03:00 committed by Evgeny Gavrin
parent 051c7b6786
commit 06d0c1806d

View File

@ -3018,6 +3018,10 @@ preparse_scope (bool is_global)
}
else if (token_is (TOK_KEYWORD))
{
if (is_keyword (KW_VAR))
{
is_in_var_declaration_list = false;
}
break;
}
else if (token_is (TOK_CLOSE_BRACE))