mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-01 07:07:49 +00:00
LibJS: Convert internal_set() to ThrowCompletionOr
This commit is contained in:
parent
6c2b974db2
commit
e5409c6ead
Notes:
sideshowbarker
2024-07-18 03:19:06 +09:00
Author: https://github.com/linusg
Commit: e5409c6ead
Pull-request: https://github.com/SerenityOS/serenity/pull/10266
Reviewed-by: https://github.com/IdanHo ✅
19 changed files with 66 additions and 69 deletions
|
@ -26,7 +26,7 @@ public:
|
|||
virtual ThrowCompletionOr<Optional<PropertyDescriptor>> internal_get_own_property(PropertyName const&) const override;
|
||||
virtual ThrowCompletionOr<bool> internal_define_own_property(PropertyName const&, PropertyDescriptor const&) override;
|
||||
virtual ThrowCompletionOr<Value> internal_get(PropertyName const&, Value receiver) const override;
|
||||
virtual bool internal_set(PropertyName const&, Value value, Value receiver) override;
|
||||
virtual ThrowCompletionOr<bool> internal_set(PropertyName const&, Value value, Value receiver) override;
|
||||
virtual bool internal_delete(PropertyName const&) override;
|
||||
|
||||
// [[ParameterMap]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue