mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:07:36 +00:00
LibJS: Convert internal_is_extensible() to ThrowCompletionOr
This commit is contained in:
parent
8c81c84c18
commit
9b4362f10a
9 changed files with 18 additions and 22 deletions
|
@ -93,7 +93,7 @@ public:
|
|||
|
||||
virtual ThrowCompletionOr<Object*> internal_get_prototype_of() const;
|
||||
virtual ThrowCompletionOr<bool> internal_set_prototype_of(Object* prototype);
|
||||
virtual bool internal_is_extensible() const;
|
||||
virtual ThrowCompletionOr<bool> internal_is_extensible() const;
|
||||
virtual bool internal_prevent_extensions();
|
||||
virtual Optional<PropertyDescriptor> internal_get_own_property(PropertyName const&) const;
|
||||
virtual bool internal_define_own_property(PropertyName const&, PropertyDescriptor const&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue