mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-25 02:38:59 +00:00
LibJS: Rename virtuals in EnvironmentRecord
This patch makes the following renames: - get_from_scope() => get_from_environment_record() - put_to_scope() => put_into_environment_record() - delete_from_scope() => delete_from_environment_record()
This commit is contained in:
parent
5edd259b0a
commit
d407f247b7
Notes:
sideshowbarker
2024-07-18 11:56:26 +09:00
Author: https://github.com/awesomekling
Commit: d407f247b7
10 changed files with 32 additions and 31 deletions
|
@ -37,9 +37,9 @@ public:
|
|||
virtual ~DeclarativeEnvironmentRecord() override;
|
||||
|
||||
// ^EnvironmentRecord
|
||||
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 Optional<Variable> get_from_environment_record(FlyString const&) const override;
|
||||
virtual void put_into_environment_record(FlyString const&, Variable) override;
|
||||
virtual bool delete_from_environment_record(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