Fix initializer detection in for-in expressions. (#3884)
Also fix column update when comments are parsed. Fixes #3882 JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
This commit is contained in:
@@ -388,7 +388,7 @@ lexer_skip_spaces (parser_context_t *context_p) /**< context */
|
||||
context_p->source_p++;
|
||||
|
||||
if (context_p->source_p < source_end_p
|
||||
&& IS_UTF8_INTERMEDIATE_OCTET (context_p->source_p[0]))
|
||||
&& !IS_UTF8_INTERMEDIATE_OCTET (context_p->source_p[0]))
|
||||
{
|
||||
context_p->column++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user