mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 20:47:45 +00:00
LibJS: Convert is_loosely_equal() to ThrowCompletionOr
This commit is contained in:
parent
b5e28410c5
commit
48ac15758e
4 changed files with 8 additions and 8 deletions
|
@ -422,7 +422,7 @@ Value in(GlobalObject&, Value lhs, Value rhs);
|
|||
Value instance_of(GlobalObject&, Value lhs, Value rhs);
|
||||
Value ordinary_has_instance(GlobalObject&, Value lhs, Value rhs);
|
||||
|
||||
bool is_loosely_equal(GlobalObject&, Value lhs, Value rhs);
|
||||
ThrowCompletionOr<bool> is_loosely_equal(GlobalObject&, Value lhs, Value rhs);
|
||||
bool is_strictly_equal(Value lhs, Value rhs);
|
||||
bool same_value(Value lhs, Value rhs);
|
||||
bool same_value_zero(Value lhs, Value rhs);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue