Initializing [[FormalParameters]] internal property of Function object in ecma_op_create_function_object.

This commit is contained in:
Ruben Ayrapetyan
2014-08-13 21:47:56 +04:00
parent daf1cfc9e6
commit 63133c247f
3 changed files with 22 additions and 6 deletions
+2 -2
View File
@@ -29,8 +29,8 @@
extern bool ecma_op_is_callable (ecma_value_t value);
extern ecma_object_t*
ecma_op_create_function_object (const ecma_char_t* formal_parameter_list_p[],
uint32_t formal_parameters_number,
ecma_op_create_function_object (ecma_string_t* formal_parameter_list_p[],
ecma_length_t formal_parameters_number,
ecma_object_t *scope_p,
bool is_strict,
opcode_counter_t first_opcode_idx);