diff options
author | Linus Groh <mail@linusgroh.de> | 2021-10-09 18:53:25 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-09 21:53:47 +0100 |
commit | 4baf3a91e843e28f983941bd05821cb1db6d0209 (patch) | |
tree | 5f099d57982d33dd19fa9740d49da1011ecf8cd6 /Userland/Libraries/LibJS/Runtime/GlobalEnvironment.h | |
parent | fbb176c926e84d0ed768700ab2af0449de0457ed (diff) | |
download | serenity-4baf3a91e843e28f983941bd05821cb1db6d0209.zip |
LibJS: Convert create_mutable_binding() to ThrowCompletionOr
Also add spec step comments to it while we're here.
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/GlobalEnvironment.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/GlobalEnvironment.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/GlobalEnvironment.h b/Userland/Libraries/LibJS/Runtime/GlobalEnvironment.h index 7fc10f53ca..fa96cdcbe1 100644 --- a/Userland/Libraries/LibJS/Runtime/GlobalEnvironment.h +++ b/Userland/Libraries/LibJS/Runtime/GlobalEnvironment.h @@ -20,7 +20,7 @@ public: virtual ThrowCompletionOr<Value> get_this_binding(GlobalObject&) const final; 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 ThrowCompletionOr<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; virtual void set_mutable_binding(GlobalObject&, FlyString const& name, Value, bool strict) override; |