Add Symbol support to integrity testing routine (#4101)
Properties with Symbol caused assertion to fail JerryScript-DCO-1.0-Signed-off-by: Rafal Walczyna r.walczyna@samsung.com
This commit is contained in:
@@ -596,7 +596,7 @@ ecma_builtin_object_test_integrity_level (ecma_object_t *obj_p, /**< routine's a
|
|||||||
|
|
||||||
for (uint32_t i = 0; i < props_p->item_count; i++)
|
for (uint32_t i = 0; i < props_p->item_count; i++)
|
||||||
{
|
{
|
||||||
ecma_string_t *property_name_p = ecma_get_string_from_value (buffer_p[i]);
|
ecma_string_t *property_name_p = ecma_get_prop_name_from_value (buffer_p[i]);
|
||||||
|
|
||||||
/* 2.a */
|
/* 2.a */
|
||||||
ecma_property_descriptor_t prop_desc;
|
ecma_property_descriptor_t prop_desc;
|
||||||
|
|||||||
@@ -26,3 +26,5 @@ obj[s2] = 3
|
|||||||
assert(obj[s1] === 1);
|
assert(obj[s1] === 1);
|
||||||
assert(obj[s2] === undefined);
|
assert(obj[s2] === undefined);
|
||||||
assert(delete obj[s1] === false);
|
assert(delete obj[s1] === false);
|
||||||
|
|
||||||
|
assert(Object.isFrozen(obj));
|
||||||
|
|||||||
Reference in New Issue
Block a user