mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:57:45 +00:00
LibJS: Rename scope to environment
This is an editorial change in the ECMA-262 spec.
See: 3246553
This commit is contained in:
parent
cb66474fb5
commit
acda12597a
8 changed files with 43 additions and 43 deletions
|
@ -22,7 +22,7 @@ public:
|
|||
Uninitialized,
|
||||
};
|
||||
|
||||
explicit FunctionEnvironment(Environment* parent_scope);
|
||||
explicit FunctionEnvironment(Environment* parent_environment);
|
||||
virtual ~FunctionEnvironment() override = default;
|
||||
|
||||
ThisBindingStatus this_binding_status() const { return m_this_binding_status; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue