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
@@ -29,13 +29,13 @@
*/
#define ECMA_TRY_CATCH(var, op, return_value) \
ecma_completion_value_t var = op; \
if ( unlikely( ecma_is_completion_value_throw( var) ) ) \
if (unlikely (ecma_is_completion_value_throw (var))) \
{ \
return_value = ecma_copy_completion_value( var); \
return_value = ecma_copy_completion_value (var); \
} \
else \
{ \
JERRY_ASSERT( ecma_is_completion_value_normal( var) )
JERRY_ASSERT(ecma_is_completion_value_normal (var))
/**
* The macro marks end of code block that is executed if no exception
@@ -47,6 +47,6 @@
* argument as corresponding ECMA_TRY_CATCH's first argument.
*/
#define ECMA_FINALIZE(var) } \
ecma_free_completion_value( var)
ecma_free_completion_value (var)
#endif /* !ECMA_TRY_CATCH_MACRO_H */