LibJS: Convert create_method_property() to ThrowCompletionOr

This commit is contained in:
Linus Groh 2021-10-03 00:54:25 +01:00
parent fb443b3fb4
commit bb2499cd7a
Notes: sideshowbarker 2024-07-18 03:07:29 +09:00
2 changed files with 3 additions and 3 deletions

View File

@ -137,7 +137,7 @@ ThrowCompletionOr<bool> Object::create_data_property(PropertyName const& propert
}
// 7.3.6 CreateMethodProperty ( O, P, V ), https://tc39.es/ecma262/#sec-createmethodproperty
bool Object::create_method_property(PropertyName const& property_name, Value value)
ThrowCompletionOr<bool> Object::create_method_property(PropertyName const& property_name, Value value)
{
VERIFY(!value.is_empty());
@ -155,7 +155,7 @@ bool Object::create_method_property(PropertyName const& property_name, Value val
};
// 4. Return ? O.[[DefineOwnProperty]](P, newDesc).
return TRY_OR_DISCARD(internal_define_own_property(property_name, new_descriptor));
return internal_define_own_property(property_name, new_descriptor);
}
// 7.3.7 CreateDataPropertyOrThrow ( O, P, V ), https://tc39.es/ecma262/#sec-createdatapropertyorthrow

View File

@ -78,7 +78,7 @@ public:
ThrowCompletionOr<Value> get(PropertyName const&) const;
ThrowCompletionOr<bool> set(PropertyName const&, Value, ShouldThrowExceptions);
ThrowCompletionOr<bool> create_data_property(PropertyName const&, Value);
bool create_method_property(PropertyName const&, Value);
ThrowCompletionOr<bool> create_method_property(PropertyName const&, Value);
bool create_data_property_or_throw(PropertyName const&, Value);
bool create_non_enumerable_data_property_or_throw(PropertyName const&, Value);
bool define_property_or_throw(PropertyName const&, PropertyDescriptor const&);