Home
last modified time | relevance | path

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

/third_party/jerryscript/tests/unit-core/
Dtest-api-property.c37 TEST_ASSERT (prop_desc.is_configurable == false); in main()
62 TEST_ASSERT (prop_desc.is_configurable == false); in main()
98 TEST_ASSERT (prop_desc.is_configurable == false); in main()
Dtest-symbol.c96 TEST_ASSERT (prop_desc.is_configurable == true); in main()
114 prop_desc.is_configurable = false; in main()
128 TEST_ASSERT (prop_desc.is_configurable == false); in main()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-conversion.c707 …uint32_t is_configurable = (ecma_op_to_boolean (configurable_prop_value) ? ECMA_PROP_IS_CONFIGURAB… in ecma_op_to_property_descriptor() local
710 prop_desc.flags |= (uint16_t) (ECMA_PROP_IS_CONFIGURABLE_DEFINED | is_configurable); in ecma_op_to_property_descriptor()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-object.c655 bool is_configurable = (prop_desc.flags & ECMA_PROP_IS_CONFIGURABLE); in ecma_builtin_object_test_integrity_level() local
662 || is_configurable) in ecma_builtin_object_test_integrity_level()
/third_party/jerryscript/tests/unit-ext/
Dtest-ext-method-register.c49 prop_desc.is_configurable = false; in freeze_property()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers.c1115 bool is_configurable) /**< new value for configurable flag */ in ecma_set_property_configurable_attr() argument
1120 if (is_configurable) in ecma_set_property_configurable_attr()
Decma-helpers.h469 void ecma_set_property_configurable_attr (ecma_property_t *property_p, bool is_configurable);
/third_party/jerryscript/jerry-core/include/
Djerryscript-core.h190 bool is_configurable; member
/third_party/jerryscript/jerry-core/api/
Djerry.c2575 prop_desc_p->is_configurable = false; in jerry_init_property_descriptor_fields()
2622 …flags |= (uint32_t) (ECMA_PROP_IS_CONFIGURABLE_DEFINED | (prop_desc_p->is_configurable ? ECMA_PROP… in jerry_define_own_property()
2732 prop_desc_p->is_configurable = (prop_desc.flags & ECMA_PROP_IS_CONFIGURABLE) != 0; in jerry_get_own_property_descriptor()
/third_party/jerryscript/docs/
D02.API-REFERENCE.md392 bool is_configurable;