mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 21:08:12 +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
|
@ -11,8 +11,8 @@
|
|||
|
||||
namespace JS {
|
||||
|
||||
FunctionEnvironment::FunctionEnvironment(Environment* parent_scope)
|
||||
: DeclarativeEnvironment(parent_scope)
|
||||
FunctionEnvironment::FunctionEnvironment(Environment* parent_environment)
|
||||
: DeclarativeEnvironment(parent_environment)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue