aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMátyás Mustoha <mmatyas@inf.u-szeged.hu>2020-05-07 08:56:31 +0200
committerGitHub <noreply@github.com>2020-05-07 08:56:31 +0200
commit5af751263b25aa378ec46589a3d4e71d043151b1 (patch)
tree806cd2ea79b25e18778a7cea7500d2df583c9edb
parent8d08cec34941322cfc2d1a538d1e1ea8620ca7a7 (diff)
Remove the unused `ecma_op_check_object_type_is_class` declaration (#3718)
Removes the unused `ecma_op_check_object_type_is_class` function declaration from `ecma-helpers.h`. This also makes the file pass the Doxygen check. JerryScript-DCO-1.0-Signed-off-by: Mátyás Mustoha mmatyas@inf.u-szeged.hu
-rw-r--r--Doxyfile1
-rw-r--r--jerry-core/ecma/base/ecma-helpers.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/Doxyfile b/Doxyfile
index 725b3e33..70f57d95 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -798,7 +798,6 @@ RECURSIVE = YES
# who are familiar with the undocumented parts.
EXCLUDE = \
jerry-core/ecma/base/ecma-globals.h \
- jerry-core/ecma/base/ecma-helpers.h \
jerry-core/ecma/operations/ecma-exceptions.h \
jerry-core/include/jerryscript-debugger-transport.h \
jerry-core/jcontext/jcontext.h \
diff --git a/jerry-core/ecma/base/ecma-helpers.h b/jerry-core/ecma/base/ecma-helpers.h
index e70bf9e6..83acd6fb 100644
--- a/jerry-core/ecma/base/ecma-helpers.h
+++ b/jerry-core/ecma/base/ecma-helpers.h
@@ -436,7 +436,6 @@ uint8_t ecma_get_object_builtin_id (ecma_object_t *object_p);
ecma_lexical_environment_type_t JERRY_ATTR_PURE ecma_get_lex_env_type (const ecma_object_t *object_p);
ecma_object_t JERRY_ATTR_PURE *ecma_get_lex_env_binding_object (const ecma_object_t *object_p);
ecma_object_t *ecma_clone_decl_lexical_environment (ecma_object_t *lex_env_p, bool copy_values);
-ecma_extended_object_t *ecma_op_check_object_type_is_class (ecma_value_t this);
ecma_property_value_t *
ecma_create_named_data_property (ecma_object_t *object_p, ecma_string_t *name_p, uint8_t prop_attributes,