aboutsummaryrefslogtreecommitdiff
path: root/jerry-core/parser/js/js-parser-tagged-template-literal.h
diff options
context:
space:
mode:
authorSzilagyi Adam <aszilagy@inf.u-szeged.hu>2022-01-31 16:46:00 +0100
committerGitHub <noreply@github.com>2022-01-31 16:46:00 +0100
commit4924f9fd315e9281a89d0621f278f3a6c1c7efd2 (patch)
treee2fbdc0652209d62c696067bf239e5bfe5fae916 /jerry-core/parser/js/js-parser-tagged-template-literal.h
parent76403606d08adb53023f7093c90ce2070a0e28fb (diff)
Remove ES_NEXT macro (#4915)
- remove all '#JERRY_ESNEXT' macro - remove 5.1 build profile, update test runner accordingly (Note: all builtins are turn on by default) - move tests from tests/jerry/esnext into tests/jerry, concatenate files with same names - add skiplist to some snapshot tests that were supported only in 5.1 - fix doxygen issues that were hidden before (bc. of es.next macro) Co-authored-by: Martin Negyokru negyokru@inf.u-szeged.hu JerryScript-DCO-1.0-Signed-off-by: Adam Szilagyi aszilagy@inf.u-szeged.hu
Diffstat (limited to 'jerry-core/parser/js/js-parser-tagged-template-literal.h')
-rw-r--r--jerry-core/parser/js/js-parser-tagged-template-literal.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/jerry-core/parser/js/js-parser-tagged-template-literal.h b/jerry-core/parser/js/js-parser-tagged-template-literal.h
index 338c209b..9bc94938 100644
--- a/jerry-core/parser/js/js-parser-tagged-template-literal.h
+++ b/jerry-core/parser/js/js-parser-tagged-template-literal.h
@@ -31,7 +31,6 @@
#include "common.h"
#include "js-parser-internal.h"
-#if JERRY_ESNEXT
ecma_object_t *parser_new_tagged_template_literal (ecma_object_t **raw_strings_p);
void parser_tagged_template_literal_append_strings (parser_context_t *context_p,
@@ -40,7 +39,6 @@ void parser_tagged_template_literal_append_strings (parser_context_t *context_p,
uint32_t prop_index);
void parser_tagged_template_literal_finalize (ecma_object_t *template_obj_p, ecma_object_t *raw_strings_p);
-#endif /* JERRY_ESNEXT */
#endif /* ECMA_TAGGED_TEMPLATE_LITERAL_H */