From 5af751263b25aa378ec46589a3d4e71d043151b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ty=C3=A1s=20Mustoha?= Date: Thu, 7 May 2020 08:56:31 +0200 Subject: [PATCH] Remove the unused `ecma_op_check_object_type_is_class` declaration (#3718) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- Doxyfile | 1 - jerry-core/ecma/base/ecma-helpers.h | 1 - 2 files changed, 2 deletions(-) diff --git a/Doxyfile b/Doxyfile index 725b3e331..70f57d951 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 e70bf9e6e..83acd6fbc 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,