Implementing equal_value, not_equal_value, less_than, greater_than opcodes.

This commit is contained in:
Ruben Ayrapetyan
2014-07-24 21:09:02 +04:00
parent 20b04a5ed7
commit 6301cba0c3
3 changed files with 179 additions and 13 deletions
+2 -2
View File
@@ -26,8 +26,8 @@
* @{
*/
extern bool ecma_abstract_equality_compare( ecma_value_t x, ecma_value_t y);
extern ecma_completion_value_t ecma_abstract_relational_compare(ecma_value_t x, ecma_value_t y, bool left_first);
extern bool ecma_op_abstract_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);
/**
* @}