1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 09:07: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:
Linus Groh 2021-09-23 23:43:28 +02:00
parent bc5a04f798
commit c7ff89891c
6 changed files with 12 additions and 12 deletions

View file

@ -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) \