Home
last modified time | relevance | path

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

/third_party/jerryscript/tests/unit-core/
Dtest-api-property.cpp61 TEST_ASSERT (prop_desc.is_enumerable == false);
87 TEST_ASSERT (prop_desc.is_enumerable == false);
112 prop_desc.is_enumerable = true;
123 TEST_ASSERT (prop_desc.is_enumerable == true);
Dtest-symbol.cpp119 TEST_ASSERT (prop_desc.is_enumerable == true);
136 prop_desc.is_enumerable = false;
150 TEST_ASSERT (prop_desc.is_enumerable == false);
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-object-prototype.c220 bool is_enumerable = (prop_desc.flags & ECMA_PROP_IS_ENUMERABLE); in ecma_builtin_object_prototype_object_property_is_enumerable() local
224 return ecma_make_boolean_value (is_enumerable); in ecma_builtin_object_prototype_object_property_is_enumerable()
/third_party/node/deps/v8/src/objects/
Dproperty-descriptor-object.tq8 is_enumerable: bool: 1 bit;
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects-general.c463 bool is_enumerable = (property_desc_p->flags & ECMA_PROP_IS_ENUMERABLE) != 0; in ecma_op_general_object_define_own_property() local
467 && (is_enumerable != ecma_is_property_enumerable (current_prop))))) in ecma_op_general_object_define_own_property()
Decma-conversion.c688 uint32_t is_enumerable = (ecma_op_to_boolean (enumerable_prop_value) ? ECMA_PROP_IS_ENUMERABLE in ecma_op_to_property_descriptor() local
691 prop_desc.flags |= (uint16_t) (ECMA_PROP_IS_ENUMERABLE_DEFINED | is_enumerable); in ecma_op_to_property_descriptor()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers.c1079 bool is_enumerable) /**< new value for enumerable flag */ in ecma_set_property_enumerable_attr() argument
1084 if (is_enumerable) in ecma_set_property_enumerable_attr()
Decma-helpers.h470 void ecma_set_property_enumerable_attr (ecma_property_t *property_p, bool is_enumerable);
/third_party/jerryscript/jerry-core/include/
Djerryscript-core.h184 bool is_enumerable; member
/third_party/jerryscript/jerry-core/api/
Djerry.c2573 prop_desc_p->is_enumerable = false; in jerry_init_property_descriptor_fields()
2616 …flags |= (uint32_t) (ECMA_PROP_IS_ENUMERABLE_DEFINED | (prop_desc_p->is_enumerable ? ECMA_PROP_IS_… in jerry_define_own_property()
2734 prop_desc_p->is_enumerable = (prop_desc.flags & ECMA_PROP_IS_ENUMERABLE) != 0; in jerry_get_own_property_descriptor()
/third_party/jerryscript/docs/
D02.API-REFERENCE.md386 bool is_enumerable;