
Before this we used an ad-hoc combination of references and 'variables' stored in a hashmap. This worked in most cases but is not spec like. Additionally hoisting, dynamically naming functions and scope analysis was not done properly. This patch fixes all of that by: - Implement BindingInitialization for destructuring assignment. - Implementing a new ScopePusher which tracks the lexical and var scoped declarations. This hoists functions to the top level if no lexical declaration name overlaps. Furthermore we do checking of redeclarations in the ScopePusher now requiring less checks all over the place. - Add methods for parsing the directives and statement lists instead of having that code duplicated in multiple places. This allows declarations to pushed to the appropriate scope more easily. - Remove the non spec way of storing 'variables' in DeclarativeEnvironment and make Reference follow the spec instead of checking both the bindings and 'variables'. - Remove all scoping related things from the Interpreter. And instead use environments as specified by the spec. This also includes fixing that NativeFunctions did not produce a valid FunctionEnvironment which could cause issues with callbacks and eval. All FunctionObjects now have a valid NewFunctionEnvironment implementation. - Remove execute_statements from Interpreter and instead use ASTNode::execute everywhere this simplifies AST.cpp as you no longer need to worry about which method to call. - Make ScopeNodes setup their own environment. This uses four different methods specified by the spec {Block, Function, Eval, Global}DeclarationInstantiation with the annexB extensions. - Implement and use NamedEvaluation where specified. Additionally there are fixes to things exposed by these changes to eval, {for, for-in, for-of} loops and assignment. Finally it also fixes some tests in test-js which where passing before but not now that we have correct behavior :^).
122 lines
4.8 KiB
C++
122 lines
4.8 KiB
C++
/*
|
|
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibJS/AST.h>
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
|
#include <LibJS/Runtime/ObjectEnvironment.h>
|
|
|
|
namespace JS {
|
|
|
|
ObjectEnvironment::ObjectEnvironment(Object& binding_object, IsWithEnvironment is_with_environment, Environment* outer_environment)
|
|
: Environment(outer_environment)
|
|
, m_binding_object(binding_object)
|
|
, m_with_environment(is_with_environment == IsWithEnvironment::Yes)
|
|
{
|
|
}
|
|
|
|
void ObjectEnvironment::visit_edges(Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(&m_binding_object);
|
|
}
|
|
|
|
// 9.1.1.2.1 HasBinding ( N ), https://tc39.es/ecma262/#sec-object-environment-records-hasbinding-n
|
|
bool ObjectEnvironment::has_binding(FlyString const& name) const
|
|
{
|
|
auto& vm = this->vm();
|
|
bool found_binding = m_binding_object.has_property(name);
|
|
if (vm.exception())
|
|
return {};
|
|
if (!found_binding)
|
|
return false;
|
|
if (!m_with_environment)
|
|
return true;
|
|
auto unscopables = m_binding_object.get(*vm.well_known_symbol_unscopables());
|
|
if (vm.exception())
|
|
return {};
|
|
if (unscopables.is_object()) {
|
|
auto blocked = unscopables.as_object().get(name);
|
|
if (vm.exception())
|
|
return {};
|
|
if (blocked.to_boolean())
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// 9.1.1.2.2 CreateMutableBinding ( N, D ), https://tc39.es/ecma262/#sec-object-environment-records-createmutablebinding-n-d
|
|
void ObjectEnvironment::create_mutable_binding(GlobalObject&, FlyString const& name, bool can_be_deleted)
|
|
{
|
|
// 1. Let bindingObject be envRec.[[BindingObject]].
|
|
// 2. Return ? DefinePropertyOrThrow(bindingObject, N, PropertyDescriptor { [[Value]]: undefined, [[Writable]]: true, [[Enumerable]]: true, [[Configurable]]: D }).
|
|
m_binding_object.define_property_or_throw(name, { .value = js_undefined(), .writable = true, .enumerable = true, .configurable = can_be_deleted });
|
|
}
|
|
|
|
// 9.1.1.2.3 CreateImmutableBinding ( N, S ), https://tc39.es/ecma262/#sec-object-environment-records-createimmutablebinding-n-s
|
|
void ObjectEnvironment::create_immutable_binding(GlobalObject&, FlyString const&, bool)
|
|
{
|
|
// "The CreateImmutableBinding concrete method of an object Environment Record is never used within this specification."
|
|
VERIFY_NOT_REACHED();
|
|
}
|
|
|
|
// 9.1.1.2.4 InitializeBinding ( N, V ), https://tc39.es/ecma262/#sec-object-environment-records-initializebinding-n-v
|
|
void ObjectEnvironment::initialize_binding(GlobalObject& global_object, FlyString const& name, Value value)
|
|
{
|
|
set_mutable_binding(global_object, name, value, false);
|
|
}
|
|
|
|
// 9.1.1.2.5 SetMutableBinding ( N, V, S ), https://tc39.es/ecma262/#sec-object-environment-records-setmutablebinding-n-v-s
|
|
void ObjectEnvironment::set_mutable_binding(GlobalObject& global_object, FlyString const& name, Value value, bool strict)
|
|
{
|
|
auto& vm = this->vm();
|
|
bool still_exists = m_binding_object.has_property(name);
|
|
if (vm.exception())
|
|
return;
|
|
if (!still_exists && strict) {
|
|
global_object.vm().throw_exception<ReferenceError>(global_object, ErrorType::UnknownIdentifier, name);
|
|
return;
|
|
}
|
|
|
|
auto result = m_binding_object.set(name, value, strict ? Object::ShouldThrowExceptions::Yes : Object::ShouldThrowExceptions::No);
|
|
|
|
// Note: Nothing like this in the spec, this is here to produce nicer errors instead of the generic one thrown by Object::set().
|
|
if (!result && strict) {
|
|
auto property_or_error = m_binding_object.internal_get_own_property(name);
|
|
if (property_or_error.is_error())
|
|
return;
|
|
auto property = property_or_error.release_value();
|
|
if (property.has_value() && !property->writable.value_or(true)) {
|
|
vm.clear_exception();
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::DescWriteNonWritable, name);
|
|
}
|
|
}
|
|
}
|
|
|
|
// 9.1.1.2.6 GetBindingValue ( N, S ), https://tc39.es/ecma262/#sec-object-environment-records-getbindingvalue-n-s
|
|
Value ObjectEnvironment::get_binding_value(GlobalObject& global_object, FlyString const& name, bool strict)
|
|
{
|
|
auto& vm = this->vm();
|
|
auto value = m_binding_object.has_property(name);
|
|
if (vm.exception())
|
|
return {};
|
|
if (!value) {
|
|
if (!strict)
|
|
return js_undefined();
|
|
|
|
global_object.vm().throw_exception<ReferenceError>(global_object, ErrorType::UnknownIdentifier, name);
|
|
return {};
|
|
}
|
|
return m_binding_object.get(name);
|
|
}
|
|
|
|
// 9.1.1.2.7 DeleteBinding ( N ), https://tc39.es/ecma262/#sec-object-environment-records-deletebinding-n
|
|
bool ObjectEnvironment::delete_binding(GlobalObject&, FlyString const& name)
|
|
{
|
|
return TRY_OR_DISCARD(m_binding_object.internal_delete(name));
|
|
}
|
|
|
|
}
|