Changing return value of ecma_op_abstract_equality_compare to ecma_completion_value_t.

This commit is contained in:
Ruben Ayrapetyan
2014-09-02 19:07:43 +04:00
parent c9f954ec2e
commit c581f10b94
3 changed files with 37 additions and 15 deletions
+1 -1
View File
@@ -26,7 +26,7 @@
* @{
*/
extern bool ecma_op_abstract_equality_compare (ecma_value_t x, ecma_value_t y);
extern ecma_completion_value_t ecma_op_abstract_equality_compare (ecma_value_t x, ecma_value_t y);
extern bool ecma_op_strict_equality_compare (ecma_value_t x, ecma_value_t y);
extern ecma_completion_value_t ecma_op_abstract_relational_compare (ecma_value_t x, ecma_value_t y, bool left_first);