mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
LibJS: Convert internal_define_own_property() to ThrowCompletionOr
This commit is contained in:
parent
0e69a6e487
commit
5da210125e
16 changed files with 67 additions and 74 deletions
|
@ -24,7 +24,7 @@ public:
|
|||
Environment& environment() { return m_environment; }
|
||||
|
||||
virtual ThrowCompletionOr<Optional<PropertyDescriptor>> internal_get_own_property(PropertyName const&) const override;
|
||||
virtual bool internal_define_own_property(PropertyName const&, PropertyDescriptor const&) override;
|
||||
virtual ThrowCompletionOr<bool> internal_define_own_property(PropertyName const&, PropertyDescriptor const&) override;
|
||||
virtual Value internal_get(PropertyName const&, Value receiver) const override;
|
||||
virtual bool internal_set(PropertyName const&, Value value, Value receiver) override;
|
||||
virtual bool internal_delete(PropertyName const&) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue