Minor style fixes.

This commit is contained in:
Ruben Ayrapetyan
2014-07-23 20:41:21 +04:00
parent 2ff5d14b06
commit 8d180e9be1
4 changed files with 9 additions and 23 deletions
+1 -3
View File
@@ -78,9 +78,7 @@ ecma_op_check_object_coercible( ecma_value_t value) /**< ecma-value */
}
}
return ecma_make_completion_value( ECMA_COMPLETION_TYPE_NORMAL,
ecma_make_simple_value( ECMA_SIMPLE_VALUE_EMPTY),
ECMA_TARGET_ID_RESERVED);
return ecma_make_empty_completion_value();
} /* ecma_op_check_object_coercible */
/**
+2 -6
View File
@@ -106,9 +106,7 @@ ecma_op_create_mutable_binding(ecma_object_t *lex_env_p, /**< lexical environmen
}
}
return ecma_make_completion_value( ECMA_COMPLETION_TYPE_NORMAL,
ecma_make_simple_value( ECMA_SIMPLE_VALUE_EMPTY),
ECMA_TARGET_ID_RESERVED);
return ecma_make_empty_completion_value();
} /* ecma_op_create_mutable_binding */
/**
@@ -153,9 +151,7 @@ ecma_op_set_mutable_binding(ecma_object_t *lex_env_p, /**< lexical environment *
}
}
return ecma_make_completion_value( ECMA_COMPLETION_TYPE_NORMAL,
ecma_make_simple_value( ECMA_SIMPLE_VALUE_EMPTY),
ECMA_TARGET_ID_RESERVED);
return ecma_make_empty_completion_value();
} /* ecma_op_set_mutable_binding */
/**