mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 12:17:35 +00:00
LibJS: Convert internal_own_property_keys() to ThrowCompletionOr
This commit is contained in:
parent
fbfb0bb908
commit
ee8380edea
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