1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:37:35 +00:00

LibJS: Add parameter to delete_property since we need DeleteOrThrow

This commit is contained in:
davidot 2021-06-21 16:06:32 +02:00 committed by Linus Groh
parent 8a06a93ce2
commit 16b87b85e3
4 changed files with 16 additions and 9 deletions

View file

@ -37,7 +37,7 @@ public:
virtual bool has_property(const PropertyName& name) const override;
virtual Value get(const PropertyName& name, Value receiver, AllowSideEffects = AllowSideEffects::Yes) const override;
virtual bool put(const PropertyName& name, Value value, Value receiver) override;
virtual bool delete_property(const PropertyName& name) override;
virtual bool delete_property(PropertyName const& name, bool force_throw_exception = false) override;
bool is_revoked() const { return m_is_revoked; }
void revoke() { m_is_revoked = true; }