1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +00:00

LibJS: Remove unused DeclarativeEnvironmentRecord::type()

Nothing was using this, and we now have separate classes for the
different types of environment records instead.
This commit is contained in:
Andreas Kling 2021-06-24 13:28:15 +02:00
parent 0cd65b55bd
commit ce2747692d
3 changed files with 1 additions and 26 deletions

View file

@ -18,12 +18,6 @@ DeclarativeEnvironmentRecord::DeclarativeEnvironmentRecord()
{
}
DeclarativeEnvironmentRecord::DeclarativeEnvironmentRecord(EnvironmentRecordType environment_record_type)
: EnvironmentRecord(nullptr)
, m_environment_record_type(environment_record_type)
{
}
DeclarativeEnvironmentRecord::DeclarativeEnvironmentRecord(EnvironmentRecord* parent_scope)
: EnvironmentRecord(parent_scope)
{
@ -35,13 +29,6 @@ DeclarativeEnvironmentRecord::DeclarativeEnvironmentRecord(HashMap<FlyString, Va
{
}
DeclarativeEnvironmentRecord::DeclarativeEnvironmentRecord(HashMap<FlyString, Variable> variables, EnvironmentRecord* parent_scope, EnvironmentRecordType environment_record_type)
: EnvironmentRecord(parent_scope)
, m_environment_record_type(environment_record_type)
, m_variables(move(variables))
{
}
DeclarativeEnvironmentRecord::~DeclarativeEnvironmentRecord()
{
}