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/ObjectEnvironment.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/ObjectEnvironment.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/ObjectEnvironment.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/ObjectEnvironment.h b/Userland/Libraries/LibJS/Runtime/ObjectEnvironment.h index 7cfe00fdbc..951955649c 100644 --- a/Userland/Libraries/LibJS/Runtime/ObjectEnvironment.h +++ b/Userland/Libraries/LibJS/Runtime/ObjectEnvironment.h @@ -20,7 +20,7 @@ public: }; ObjectEnvironment(Object& binding_object, IsWithEnvironment, Environment* outer_environment); - virtual bool has_binding(FlyString const& name, Optional<size_t>* = nullptr) const override; + virtual ThrowCompletionOr<bool> has_binding(FlyString const& name, Optional<size_t>* = nullptr) const override; virtual void create_mutable_binding(GlobalObject&, FlyString const& name, bool can_be_deleted) override; virtual void create_immutable_binding(GlobalObject&, FlyString const& name, bool strict) override; virtual void initialize_binding(GlobalObject&, FlyString const& name, Value) override; |