mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:37:45 +00:00
LibJS: Convert EnvironmentRecord & friends to east-const style
This commit is contained in:
parent
6c6dbcfc36
commit
46f2c23030
6 changed files with 14 additions and 16 deletions
|
@ -16,8 +16,8 @@ class ObjectEnvironmentRecord : public EnvironmentRecord {
|
|||
public:
|
||||
ObjectEnvironmentRecord(Object&, EnvironmentRecord* parent_scope);
|
||||
|
||||
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue