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/ArgumentsObject.h | |
parent | e5409c6eadf53a74b8960855991778372689bf3e (diff) | |
download | serenity-fbfb0bb908fe74643ce4eddc72c2fb4cc7e6c68d.zip |
LibJS: Convert internal_delete() to ThrowCompletionOr
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/ArgumentsObject.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/ArgumentsObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/ArgumentsObject.h b/Userland/Libraries/LibJS/Runtime/ArgumentsObject.h index 78fef9ca12..8fec73ecfe 100644 --- a/Userland/Libraries/LibJS/Runtime/ArgumentsObject.h +++ b/Userland/Libraries/LibJS/Runtime/ArgumentsObject.h @@ -27,7 +27,7 @@ public: virtual ThrowCompletionOr<bool> internal_define_own_property(PropertyName const&, PropertyDescriptor 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; // [[ParameterMap]] Object& parameter_map() { return *m_parameter_map; } |