mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-18 15:32:22 +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:
parent
580a7e0f7c
commit
facbe32fcd
Notes:
sideshowbarker
2024-07-18 03:30:31 +09:00
Author: https://github.com/linusg
Commit: facbe32fcd
Pull-request: https://github.com/SerenityOS/serenity/pull/10191
Reviewed-by: https://github.com/awesomekling ✅
3 changed files with 9 additions and 9 deletions
|
@ -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); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue