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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user