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:
committed by
Evgeny Gavrin
parent
051c7b6786
commit
06d0c1806d
@@ -3018,6 +3018,10 @@ preparse_scope (bool is_global)
|
|||||||
}
|
}
|
||||||
else if (token_is (TOK_KEYWORD))
|
else if (token_is (TOK_KEYWORD))
|
||||||
{
|
{
|
||||||
|
if (is_keyword (KW_VAR))
|
||||||
|
{
|
||||||
|
is_in_var_declaration_list = false;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else if (token_is (TOK_CLOSE_BRACE))
|
else if (token_is (TOK_CLOSE_BRACE))
|
||||||
|
|||||||
Reference in New Issue
Block a user