mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 17:48:37 +00:00
LibJS: Convert internal_own_property_keys() to ThrowCompletionOr
This commit is contained in:
parent
fbfb0bb908
commit
ee8380edea
Notes:
sideshowbarker
2024-07-18 03:18:58 +09:00
Author: https://github.com/linusg
Commit: ee8380edea
Pull-request: https://github.com/SerenityOS/serenity/pull/10266
Reviewed-by: https://github.com/IdanHo ✅
15 changed files with 56 additions and 92 deletions
|
@ -101,7 +101,7 @@ public:
|
|||
virtual ThrowCompletionOr<Value> internal_get(PropertyName const&, Value receiver) const;
|
||||
virtual ThrowCompletionOr<bool> internal_set(PropertyName const&, Value value, Value receiver);
|
||||
virtual ThrowCompletionOr<bool> internal_delete(PropertyName const&);
|
||||
virtual MarkedValueList internal_own_property_keys() const;
|
||||
virtual ThrowCompletionOr<MarkedValueList> internal_own_property_keys() const;
|
||||
|
||||
bool ordinary_set_with_own_descriptor(PropertyName const&, Value, Value, Optional<PropertyDescriptor>);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue