Implementing rest unimplemented cases in ecma comparison routines.

This commit is contained in:
Ruben Ayrapetyan
2014-09-02 22:18:28 +04:00
parent 3dc9a5838a
commit 57058c30ef
2 changed files with 57 additions and 5 deletions
+4
View File
@@ -21,6 +21,10 @@ assert((11 <= 11) == true);
assert((7 >= 11) == false);
assert((7 >= 7) == true);
assert(0 > (0 - 'Infinity'));
assert(0 < (0 - '-Infinity'));
assert((0 - 'Infinity') < (0 - '-Infinity'));
assert('a' > '');
assert(!('' < ''));
assert(!('' > ''));