diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Value.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Value.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Value.cpp b/Userland/Libraries/LibJS/Runtime/Value.cpp index 967f44a3f6..4415f765d7 100644 --- a/Userland/Libraries/LibJS/Runtime/Value.cpp +++ b/Userland/Libraries/LibJS/Runtime/Value.cpp @@ -1283,7 +1283,7 @@ Value in(GlobalObject& global_object, Value lhs, Value rhs) auto lhs_property_key = lhs.to_property_key(global_object); if (global_object.vm().exception()) return {}; - return Value(rhs.as_object().has_property(lhs_property_key)); + return Value(TRY_OR_DISCARD(rhs.as_object().has_property(lhs_property_key))); } // 13.10.2 InstanceofOperator ( V, target ), https://tc39.es/ecma262/#sec-instanceofoperator |