Home
last modified time | relevance | path

Searched refs:current_prop_p (Results 1 – 1 of 1) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-array-object.c810 ecma_property_header_t *current_prop_p; in ecma_delete_array_properties() local
813 current_prop_p = ECMA_GET_NON_NULL_POINTER (ecma_property_header_t, current_prop_cp); in ecma_delete_array_properties()
815 if (current_prop_p->types[0] == ECMA_PROPERTY_TYPE_HASHMAP) in ecma_delete_array_properties()
817 current_prop_cp = current_prop_p->next_property_cp; in ecma_delete_array_properties()
823 current_prop_p = ECMA_GET_NON_NULL_POINTER (ecma_property_header_t, current_prop_cp); in ecma_delete_array_properties()
824 JERRY_ASSERT (ECMA_PROPERTY_IS_PROPERTY_PAIR (current_prop_p)); in ecma_delete_array_properties()
826 ecma_property_pair_t *prop_pair_p = (ecma_property_pair_t *) current_prop_p; in ecma_delete_array_properties()
830 if (ECMA_PROPERTY_IS_NAMED_PROPERTY (current_prop_p->types[i]) in ecma_delete_array_properties()
831 && !ecma_is_property_configurable (current_prop_p->types[i])) in ecma_delete_array_properties()
833 uint32_t index = ecma_string_get_property_index (current_prop_p->types[i], in ecma_delete_array_properties()
[all …]