Style fixes in libecmaoperations: space between function name and opening parenthesis, no space after opening parenthesis/before closing parenthesis. By mistake, the changes weren't commited with 8081e5cdb38ad0f9789a89c92362fc73a716d85c.

This commit is contained in:
Ruben Ayrapetyan
2014-08-11 19:34:49 +04:00
parent b02eefd4ae
commit 0b592470d5
24 changed files with 666 additions and 666 deletions
+4 -4
View File
@@ -26,18 +26,18 @@
* @{
*/
extern bool ecma_op_is_callable( ecma_value_t value);
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[],
ecma_op_create_function_object (const ecma_char_t* formal_parameter_list_p[],
size_t formal_parameters_number,
ecma_object_t *scope_p,
bool is_strict,
opcode_counter_t first_opcode_idx);
extern ecma_object_t* ecma_op_get_throw_type_error( void);
extern ecma_object_t* ecma_op_get_throw_type_error (void);
extern ecma_completion_value_t ecma_op_function_call( ecma_object_t *func_obj_p,
extern ecma_completion_value_t ecma_op_function_call (ecma_object_t *func_obj_p,
ecma_value_t this_arg_value,
ecma_value_t* arguments_list_p,
size_t arguments_list_len);