diff options
author | Linus Groh <mail@linusgroh.de> | 2021-09-29 18:45:33 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-09-29 23:49:53 +0100 |
commit | fbfb0bb908fe74643ce4eddc72c2fb4cc7e6c68d (patch) | |
tree | f5d64c8fd5d3df2e027291fb4442f1cece945651 /Userland/Libraries/LibJS/Runtime/ProxyObject.h | |
parent | e5409c6eadf53a74b8960855991778372689bf3e (diff) | |
download | serenity-fbfb0bb908fe74643ce4eddc72c2fb4cc7e6c68d.zip |
LibJS: Convert internal_delete() to ThrowCompletionOr
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/ProxyObject.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/ProxyObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/ProxyObject.h b/Userland/Libraries/LibJS/Runtime/ProxyObject.h index 129e0897ca..4251137b6a 100644 --- a/Userland/Libraries/LibJS/Runtime/ProxyObject.h +++ b/Userland/Libraries/LibJS/Runtime/ProxyObject.h @@ -44,7 +44,7 @@ public: virtual ThrowCompletionOr<bool> internal_has_property(PropertyName const&) const override; virtual ThrowCompletionOr<Value> internal_get(PropertyName const&, Value receiver) const override; virtual ThrowCompletionOr<bool> internal_set(PropertyName const&, Value value, Value receiver) override; - virtual bool internal_delete(PropertyName const&) override; + virtual ThrowCompletionOr<bool> internal_delete(PropertyName const&) override; virtual MarkedValueList internal_own_property_keys() const override; private: |