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

LibJS: Convert EnvironmentRecord & friends to east-const style

This commit is contained in:
Andreas Kling 2021-06-21 23:26:50 +02:00
parent 6c6dbcfc36
commit 46f2c23030
6 changed files with 14 additions and 16 deletions

View file

@ -21,8 +21,8 @@ public:
virtual ~GlobalObject() override;
virtual Optional<Variable> get_from_scope(const FlyString&) const override;
virtual void put_to_scope(const FlyString&, Variable) override;
virtual Optional<Variable> get_from_scope(FlyString const&) const override;
virtual void put_to_scope(FlyString const&, Variable) override;
virtual bool delete_from_scope(FlyString const&) override;
virtual bool has_this_binding() const override;
virtual Value get_this_binding(GlobalObject&) const override;