Fix ecma_op_define_own_property argument list: the routine now takes property descriptor as an argument instead of property.

This commit is contained in:
Ruben Ayrapetyan
2014-07-28 21:57:27 +04:00
parent b073701da4
commit 4cefa6950e
2 changed files with 2 additions and 2 deletions
@@ -166,7 +166,7 @@ ecma_op_object_default_value( ecma_object_t *obj_p, /**< the object */
ecma_completion_value_t
ecma_op_object_define_own_property( ecma_object_t *obj_p, /**< the object */
ecma_array_first_chunk_t *property_name_p, /**< property name */
ecma_property_t property_desc, /**< property descriptor */
ecma_property_descriptor_t property_desc, /**< property descriptor */
bool is_throw) /**< flag that controls failure handling */
{
JERRY_UNIMPLEMENTED_REF_UNUSED_VARS( obj_p, property_name_p, property_desc, is_throw);