From 6649940ea6898c18fac45efa4d712475ef52a5b8 Mon Sep 17 00:00:00 2001 From: Zoltan Herczeg Date: Tue, 31 Aug 2021 13:37:25 +0200 Subject: Implement function.toString operation (#4752) May increase the memory consumtpion heavily. JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com --- jerry-core/include/jerryscript-types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'jerry-core/include/jerryscript-types.h') diff --git a/jerry-core/include/jerryscript-types.h b/jerry-core/include/jerryscript-types.h index 505a098e..50966d13 100644 --- a/jerry-core/include/jerryscript-types.h +++ b/jerry-core/include/jerryscript-types.h @@ -112,6 +112,7 @@ typedef enum JERRY_FEATURE_PROMISE_CALLBACK, /**< Promise callback support */ JERRY_FEATURE_MODULE, /**< Module support */ JERRY_FEATURE_WEAKREF, /**< WeakRef support */ + JERRY_FEATURE_FUNCTION_TO_STRING, /**< function toString support */ JERRY_FEATURE__COUNT /**< number of features. NOTE: must be at the end of the list */ } jerry_feature_t; -- cgit v1.2.3