LibJS: Rename abstract_relation() to is_less_than()

This got turned into a proper AO with a new name recently.

See: 587adc0
This commit is contained in:
Linus Groh 2021-09-23 23:49:52 +02:00
commit facbe32fcd
Notes: sideshowbarker 2024-07-18 03:30:31 +09:00
3 changed files with 9 additions and 9 deletions

View file

@ -375,7 +375,7 @@ bool is_strictly_equal(Value lhs, Value rhs);
bool same_value(Value lhs, Value rhs);
bool same_value_zero(Value lhs, Value rhs);
bool same_value_non_numeric(Value lhs, Value rhs);
TriState abstract_relation(GlobalObject&, bool left_first, Value lhs, Value rhs);
TriState is_less_than(GlobalObject&, bool left_first, Value lhs, Value rhs);
inline bool Value::operator==(Value const& value) const { return same_value(*this, value); }