mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:37:37 +00:00
LibJS: Shrink sizeof(LexicalEnvironment) by reorganizing members
This commit is contained in:
parent
4e8cb4558b
commit
07f76cd980
2 changed files with 4 additions and 4 deletions
|
@ -49,9 +49,9 @@ LexicalEnvironment::LexicalEnvironment(HashMap<FlyString, Variable> variables, L
|
|||
}
|
||||
|
||||
LexicalEnvironment::LexicalEnvironment(HashMap<FlyString, Variable> variables, LexicalEnvironment* parent, EnvironmentRecordType environment_record_type)
|
||||
: m_parent(parent)
|
||||
: m_environment_record_type(environment_record_type)
|
||||
, m_parent(parent)
|
||||
, m_variables(move(variables))
|
||||
, m_environment_record_type(environment_record_type)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue