1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 18:57:34 +00:00

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
parent 580a7e0f7c
commit facbe32fcd
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); }