diff options
author | Linus Groh <mail@linusgroh.de> | 2021-10-09 17:07:32 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-09 21:53:47 +0100 |
commit | fbb176c926e84d0ed768700ab2af0449de0457ed (patch) | |
tree | 5ff4b12a7c2a12895b5aeec24efe631c889fc5dc /Userland/Libraries/LibJS/Runtime/Environment.h | |
parent | 617d3cd3d3d03fc5c2af8cfe71d8c34be2031bc0 (diff) | |
download | serenity-fbb176c926e84d0ed768700ab2af0449de0457ed.zip |
LibJS: Convert has_binding() to ThrowCompletionOr
Also add spec step comments to it while we're here.
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Environment.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Environment.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Environment.h b/Userland/Libraries/LibJS/Runtime/Environment.h index e0864c427a..bfab780217 100644 --- a/Userland/Libraries/LibJS/Runtime/Environment.h +++ b/Userland/Libraries/LibJS/Runtime/Environment.h @@ -33,7 +33,7 @@ public: virtual Object* with_base_object() const { return nullptr; } - virtual bool has_binding([[maybe_unused]] FlyString const& name, [[maybe_unused]] Optional<size_t>* out_index = nullptr) const { return false; } + virtual ThrowCompletionOr<bool> has_binding([[maybe_unused]] FlyString const& name, [[maybe_unused]] Optional<size_t>* out_index = nullptr) const { return false; } virtual void create_mutable_binding(GlobalObject&, [[maybe_unused]] FlyString const& name, [[maybe_unused]] bool can_be_deleted) { } virtual void create_immutable_binding(GlobalObject&, [[maybe_unused]] FlyString const& name, [[maybe_unused]] bool strict) { } virtual void initialize_binding(GlobalObject&, [[maybe_unused]] FlyString const& name, Value) { } |