mirror of
https://github.com/RGBCube/serenity
synced 2025-07-10 11:57:35 +00:00
LibJS: Rename strict_eq() to is_strictly_equal()
This got turned into a proper AO with a new name recently.
See: 19d7ca4
This commit is contained in:
parent
bc5a04f798
commit
c7ff89891c
6 changed files with 12 additions and 12 deletions
|
@ -67,12 +67,12 @@ static Value abstract_equals(GlobalObject& global_object, Value src1, Value src2
|
|||
|
||||
static Value typed_inequals(GlobalObject&, Value src1, Value src2)
|
||||
{
|
||||
return Value(!strict_eq(src1, src2));
|
||||
return Value(!is_strictly_equal(src1, src2));
|
||||
}
|
||||
|
||||
static Value typed_equals(GlobalObject&, Value src1, Value src2)
|
||||
{
|
||||
return Value(strict_eq(src1, src2));
|
||||
return Value(is_strictly_equal(src1, src2));
|
||||
}
|
||||
|
||||
#define JS_DEFINE_COMMON_BINARY_OP(OpTitleCase, op_snake_case) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue