mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:37:34 +00:00
LibJS: Convert ordinary_set_with_own_descriptor() to ThrowCompletionOr
This commit is contained in:
parent
3b59a4577d
commit
2f42675ebd
3 changed files with 10 additions and 18 deletions
|
@ -104,7 +104,7 @@ public:
|
|||
virtual ThrowCompletionOr<bool> internal_delete(PropertyName const&);
|
||||
virtual ThrowCompletionOr<MarkedValueList> internal_own_property_keys() const;
|
||||
|
||||
bool ordinary_set_with_own_descriptor(PropertyName const&, Value, Value, Optional<PropertyDescriptor>);
|
||||
ThrowCompletionOr<bool> ordinary_set_with_own_descriptor(PropertyName const&, Value, Value, Optional<PropertyDescriptor>);
|
||||
|
||||
// 10.4.7 Immutable Prototype Exotic Objects, https://tc39.es/ecma262/#sec-immutable-prototype-exotic-objects
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue