Implementing rest unimplemented cases in ecma comparison routines.
This commit is contained in:
@@ -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(!('' > ''));
|
||||
|
||||
Reference in New Issue
Block a user