1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00

LibJS: Remove outdated FIXME in GetThisEnvironment

This commit is contained in:
Andreas Kling 2021-06-25 11:31:46 +02:00
parent 07acdc7be2
commit 92ce4ac23f

View file

@ -181,7 +181,6 @@ ObjectEnvironmentRecord* new_object_environment(Object& object, bool is_with_env
// 9.4.3 GetThisEnvironment ( ), https://tc39.es/ecma262/#sec-getthisenvironment
EnvironmentRecord& get_this_environment(VM& vm)
{
// FIXME: Should be the *lexical* environment.
for (auto* env = vm.lexical_environment(); env; env = env->outer_environment()) {
if (env->has_this_binding())
return *env;