Add support of escaping backslash and backtick to String.raw (#3736)
Template literals already supports escaping backslash and backtick, this commit enables escaping this in String.raw. It also fixes invalid behaviour of String.raw when using new line character. JerryScript-DCO-1.0-Signed-off-by: Rafal Walczyna r.walczyna@samsung.com
This commit is contained in:
@@ -998,6 +998,9 @@ lexer_parse_string (parser_context_t *context_p, /**< context */
|
||||
else if (*source_p == LEXER_NEWLINE_LS_PS_BYTE_1 && LEXER_NEWLINE_LS_PS_BYTE_23 (source_p))
|
||||
{
|
||||
source_p += 3;
|
||||
#if ENABLED (JERRY_ES2015)
|
||||
length += 3 * raw_length_inc;
|
||||
#endif /* ENABLED (JERRY_ES2015) */
|
||||
line++;
|
||||
column = 1;
|
||||
continue;
|
||||
@@ -1006,6 +1009,12 @@ lexer_parse_string (parser_context_t *context_p, /**< context */
|
||||
#if ENABLED (JERRY_ES2015)
|
||||
if (opts & LEXER_STRING_RAW)
|
||||
{
|
||||
if ((*source_p == LIT_CHAR_GRAVE_ACCENT) || (*source_p == LIT_CHAR_BACKSLASH))
|
||||
{
|
||||
source_p++;
|
||||
column++;
|
||||
length++;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
#endif /* ENABLED (JERRY_ES2015) */
|
||||
@@ -2281,6 +2290,16 @@ lexer_convert_literal_to_chars (parser_context_t *context_p, /**< context */
|
||||
}
|
||||
continue;
|
||||
}
|
||||
if ((*source_p == LIT_CHAR_BACKSLASH) && is_raw)
|
||||
{
|
||||
JERRY_ASSERT (source_p + 1 < context_p->source_end_p);
|
||||
if ((*(source_p + 1) == LIT_CHAR_GRAVE_ACCENT) || (*(source_p + 1) == LIT_CHAR_BACKSLASH))
|
||||
{
|
||||
*destination_p++ = *source_p++;
|
||||
*destination_p++ = *source_p++;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif /* ENABLED (JERRY_ES2015) */
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ parser_tagged_template_literal_append_strings (parser_context_t *context_p, /**<
|
||||
{
|
||||
lexer_lit_location_t *lit_loc_p = &context_p->token.lit_location;
|
||||
|
||||
if (lit_loc_p->length == 0)
|
||||
if (lit_loc_p->length == 0 && !lit_loc_p->has_escape)
|
||||
{
|
||||
ecma_builtin_helper_def_prop_by_index (template_obj_p,
|
||||
prop_idx,
|
||||
|
||||
Reference in New Issue
Block a user