Passing property descriptors by const ref instead of by value.

This commit is contained in:
Ruben Ayrapetyan
2014-12-03 21:57:11 +03:00
parent b7daa16b99
commit 90fccc04ba
14 changed files with 129 additions and 120 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ ecma_op_create_array_object (ecma_value_t *arguments_list_p,
extern ecma_completion_value_t
ecma_op_array_object_define_own_property (ecma_object_t *obj_p,
ecma_string_t *property_name_p,
ecma_property_descriptor_t property_desc,
const ecma_property_descriptor_t* property_desc_p,
bool is_throw);
/**