Fix parsing unterminated let statement (#4808)
This patch fixes #4754 JerryScript-DCO-1.0-Signed-off-by: Robert Fancsik robert.fancsik@h-lab.eu
This commit is contained in:
@@ -1550,6 +1550,10 @@ parser_parse_for_statement_start (parser_context_t *context_p) /**< context */
|
||||
break;
|
||||
}
|
||||
|
||||
/* FALLTHRU */
|
||||
}
|
||||
case LEXER_KEYW_LET:
|
||||
{
|
||||
if (context_p->next_scanner_info_p->source_p == context_p->source_p
|
||||
&& context_p->next_scanner_info_p->type != SCANNER_TYPE_BLOCK)
|
||||
{
|
||||
@@ -1563,9 +1567,9 @@ parser_parse_for_statement_start (parser_context_t *context_p) /**< context */
|
||||
}
|
||||
|
||||
context_p->token.type = LEXER_KEYW_LET;
|
||||
|
||||
/* FALLTHRU */
|
||||
}
|
||||
case LEXER_KEYW_LET:
|
||||
case LEXER_KEYW_CONST:
|
||||
{
|
||||
if (context_p->next_scanner_info_p->source_p == source_p)
|
||||
|
||||
Reference in New Issue
Block a user