mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:37:46 +00:00
LibJS: Convert internal_has_property() to ThrowCompletionOr
This commit is contained in:
parent
5da210125e
commit
d9895ec12d
10 changed files with 32 additions and 32 deletions
|
@ -97,7 +97,7 @@ public:
|
|||
virtual ThrowCompletionOr<bool> internal_prevent_extensions();
|
||||
virtual ThrowCompletionOr<Optional<PropertyDescriptor>> internal_get_own_property(PropertyName const&) const;
|
||||
virtual ThrowCompletionOr<bool> internal_define_own_property(PropertyName const&, PropertyDescriptor const&);
|
||||
virtual bool internal_has_property(PropertyName const&) const;
|
||||
virtual ThrowCompletionOr<bool> internal_has_property(PropertyName const&) const;
|
||||
virtual Value internal_get(PropertyName const&, Value receiver) const;
|
||||
virtual bool internal_set(PropertyName const&, Value value, Value receiver);
|
||||
virtual bool internal_delete(PropertyName const&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue