2020-03-28 17:23:54 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
2021-04-06 22:06:11 +02:00
|
|
|
* Copyright (c) 2020-2021, Linus Groh <mail@linusgroh.de>
|
2020-03-28 17:23:54 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-03-28 17:23:54 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/Function.h>
|
2020-03-29 01:08:25 +01:00
|
|
|
#include <LibJS/Runtime/Array.h>
|
2020-04-09 22:15:26 +02:00
|
|
|
#include <LibJS/Runtime/Error.h>
|
2020-04-18 13:18:06 +02:00
|
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
2020-03-28 17:23:54 +01:00
|
|
|
#include <LibJS/Runtime/ObjectConstructor.h>
|
2021-01-01 17:46:39 +01:00
|
|
|
#include <LibJS/Runtime/ProxyObject.h>
|
2020-04-02 19:32:21 +02:00
|
|
|
#include <LibJS/Runtime/Shape.h>
|
2020-03-28 17:23:54 +01:00
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
2020-06-20 15:40:48 +02:00
|
|
|
ObjectConstructor::ObjectConstructor(GlobalObject& global_object)
|
2020-10-13 23:49:19 +02:00
|
|
|
: NativeFunction(vm().names.Object, *global_object.function_prototype())
|
2020-03-28 17:23:54 +01:00
|
|
|
{
|
2020-06-20 15:40:48 +02:00
|
|
|
}
|
|
|
|
|
2020-07-22 17:50:18 +02:00
|
|
|
void ObjectConstructor::initialize(GlobalObject& global_object)
|
2020-06-20 15:40:48 +02:00
|
|
|
{
|
2020-10-13 23:49:19 +02:00
|
|
|
auto& vm = this->vm();
|
2020-07-22 17:50:18 +02:00
|
|
|
NativeFunction::initialize(global_object);
|
2020-10-13 23:49:19 +02:00
|
|
|
define_property(vm.names.prototype, global_object.object_prototype(), 0);
|
|
|
|
define_property(vm.names.length, Value(1), Attribute::Configurable);
|
2020-03-28 17:23:54 +01:00
|
|
|
|
2020-04-27 23:05:02 -07:00
|
|
|
u8 attr = Attribute::Writable | Attribute::Configurable;
|
2020-10-13 23:49:19 +02:00
|
|
|
define_native_function(vm.names.defineProperty, define_property_, 3, attr);
|
2021-04-10 18:39:11 +02:00
|
|
|
define_native_function(vm.names.defineProperties, define_properties, 2, attr);
|
2020-10-13 23:49:19 +02:00
|
|
|
define_native_function(vm.names.is, is, 2, attr);
|
|
|
|
define_native_function(vm.names.getOwnPropertyDescriptor, get_own_property_descriptor, 2, attr);
|
|
|
|
define_native_function(vm.names.getOwnPropertyNames, get_own_property_names, 1, attr);
|
|
|
|
define_native_function(vm.names.getPrototypeOf, get_prototype_of, 1, attr);
|
|
|
|
define_native_function(vm.names.setPrototypeOf, set_prototype_of, 2, attr);
|
|
|
|
define_native_function(vm.names.isExtensible, is_extensible, 1, attr);
|
2021-04-06 22:45:12 +02:00
|
|
|
define_native_function(vm.names.isFrozen, is_frozen, 1, attr);
|
|
|
|
define_native_function(vm.names.isSealed, is_sealed, 1, attr);
|
2020-10-13 23:49:19 +02:00
|
|
|
define_native_function(vm.names.preventExtensions, prevent_extensions, 1, attr);
|
2021-04-06 22:06:11 +02:00
|
|
|
define_native_function(vm.names.freeze, freeze, 1, attr);
|
|
|
|
define_native_function(vm.names.seal, seal, 1, attr);
|
2020-10-13 23:49:19 +02:00
|
|
|
define_native_function(vm.names.keys, keys, 1, attr);
|
|
|
|
define_native_function(vm.names.values, values, 1, attr);
|
|
|
|
define_native_function(vm.names.entries, entries, 1, attr);
|
2021-04-10 18:40:12 +02:00
|
|
|
define_native_function(vm.names.create, create, 2, attr);
|
2020-03-28 17:23:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ObjectConstructor::~ObjectConstructor()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-09-27 17:24:14 +02:00
|
|
|
Value ObjectConstructor::call()
|
2020-03-28 17:23:54 +01:00
|
|
|
{
|
2020-11-04 21:13:07 +00:00
|
|
|
auto value = vm().argument(0);
|
|
|
|
if (value.is_nullish())
|
|
|
|
return Object::create_empty(global_object());
|
|
|
|
return value.to_object(global_object());
|
2020-03-28 17:23:54 +01:00
|
|
|
}
|
|
|
|
|
2020-09-27 18:45:21 +02:00
|
|
|
Value ObjectConstructor::construct(Function&)
|
2020-04-01 18:31:24 +01:00
|
|
|
{
|
2020-09-27 17:24:14 +02:00
|
|
|
return call();
|
2020-04-01 18:31:24 +01:00
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::get_own_property_names)
|
2020-03-29 01:08:25 +01:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
if (!vm.argument_count())
|
2020-03-29 01:08:25 +01:00
|
|
|
return {};
|
2020-09-27 18:36:49 +02:00
|
|
|
auto* object = vm.argument(0).to_object(global_object);
|
|
|
|
if (vm.exception())
|
2020-03-29 01:08:25 +01:00
|
|
|
return {};
|
2020-06-20 13:55:34 +02:00
|
|
|
auto* result = Array::create(global_object);
|
LibJS: Object index properties have descriptors; Handle sparse indices
This patch adds an IndexedProperties object for storing indexed
properties within an Object. This accomplishes two goals: indexed
properties now have an associated descriptor, and objects now gracefully
handle sparse properties.
The IndexedProperties class is a wrapper around two other classes, one
for simple indexed properties storage, and one for general indexed
property storage. Simple indexed property storage is the common-case,
and is simply a vector of properties which all have attributes of
default_attributes (writable, enumerable, and configurable).
General indexed property storage is for a collection of indexed
properties where EITHER one or more properties have attributes other
than default_attributes OR there is a property with a large index (in
particular, large is '200' or higher).
Indexed properties are now treated relatively the same as storage within
the various Object methods. Additionally, there is a custom iterator
class for IndexedProperties which makes iteration easy. The iterator
skips empty values by default, but can be configured otherwise.
Likewise, it evaluates getters by default, but can be set not to.
2020-05-27 11:35:09 -07:00
|
|
|
for (auto& entry : object->indexed_properties())
|
2020-09-27 18:36:49 +02:00
|
|
|
result->indexed_properties().append(js_string(vm, String::number(entry.index())));
|
2020-07-07 21:38:46 -07:00
|
|
|
for (auto& it : object->shape().property_table_ordered()) {
|
|
|
|
if (!it.key.is_string())
|
|
|
|
continue;
|
2020-09-27 18:36:49 +02:00
|
|
|
result->indexed_properties().append(js_string(vm, it.key.as_string()));
|
2020-07-07 21:38:46 -07:00
|
|
|
}
|
2020-04-06 16:53:02 +02:00
|
|
|
|
2020-03-29 01:08:25 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::get_prototype_of)
|
2020-03-28 22:48:35 +01:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
if (!vm.argument_count())
|
2020-03-28 22:48:35 +01:00
|
|
|
return {};
|
2020-09-27 18:36:49 +02:00
|
|
|
auto* object = vm.argument(0).to_object(global_object);
|
|
|
|
if (vm.exception())
|
2020-03-28 22:48:35 +01:00
|
|
|
return {};
|
|
|
|
return object->prototype();
|
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::set_prototype_of)
|
2020-03-28 22:48:35 +01:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
if (vm.argument_count() < 2) {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ObjectSetPrototypeOfTwoArgs);
|
2020-08-25 12:52:32 +02:00
|
|
|
return {};
|
|
|
|
}
|
2020-09-27 18:36:49 +02:00
|
|
|
auto* object = vm.argument(0).to_object(global_object);
|
|
|
|
if (vm.exception())
|
2020-03-28 22:48:35 +01:00
|
|
|
return {};
|
2020-09-27 18:36:49 +02:00
|
|
|
auto prototype_value = vm.argument(1);
|
2020-06-02 12:25:21 +01:00
|
|
|
Object* prototype;
|
|
|
|
if (prototype_value.is_null()) {
|
|
|
|
prototype = nullptr;
|
|
|
|
} else if (prototype_value.is_object()) {
|
|
|
|
prototype = &prototype_value.as_object();
|
|
|
|
} else {
|
2020-09-27 18:36:49 +02:00
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ObjectPrototypeWrongType);
|
2020-06-02 12:25:21 +01:00
|
|
|
return {};
|
|
|
|
}
|
2020-06-02 12:32:54 +01:00
|
|
|
if (!object->set_prototype(prototype)) {
|
2020-09-27 18:36:49 +02:00
|
|
|
if (!vm.exception())
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ObjectSetPrototypeOfReturnedFalse);
|
2020-06-02 12:32:54 +01:00
|
|
|
return {};
|
|
|
|
}
|
2020-06-02 11:39:24 +01:00
|
|
|
return object;
|
2020-03-28 22:48:35 +01:00
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::is_extensible)
|
2020-06-01 21:13:16 -07:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
auto argument = vm.argument(0);
|
2020-06-01 21:13:16 -07:00
|
|
|
if (!argument.is_object())
|
|
|
|
return Value(false);
|
|
|
|
return Value(argument.as_object().is_extensible());
|
|
|
|
}
|
|
|
|
|
2021-04-06 22:45:12 +02:00
|
|
|
// 20.1.2.15 Object.isFrozen, https://tc39.es/ecma262/#sec-object.isfrozen
|
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::is_frozen)
|
|
|
|
{
|
|
|
|
auto argument = vm.argument(0);
|
|
|
|
if (!argument.is_object())
|
|
|
|
return Value(true);
|
|
|
|
return Value(argument.as_object().test_integrity_level(Object::IntegrityLevel::Frozen));
|
|
|
|
}
|
|
|
|
|
|
|
|
// 20.1.2.16 Object.isSealed, https://tc39.es/ecma262/#sec-object.issealed
|
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::is_sealed)
|
|
|
|
{
|
|
|
|
auto argument = vm.argument(0);
|
|
|
|
if (!argument.is_object())
|
|
|
|
return Value(true);
|
|
|
|
return Value(argument.as_object().test_integrity_level(Object::IntegrityLevel::Sealed));
|
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::prevent_extensions)
|
2020-06-01 21:13:16 -07:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
auto argument = vm.argument(0);
|
2020-06-01 21:13:16 -07:00
|
|
|
if (!argument.is_object())
|
|
|
|
return argument;
|
2021-04-06 22:06:11 +02:00
|
|
|
auto status = argument.as_object().prevent_extensions();
|
|
|
|
if (vm.exception())
|
|
|
|
return {};
|
|
|
|
if (!status) {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ObjectPreventExtensionsReturnedFalse);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return argument;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 20.1.2.6 Object.freeze, https://tc39.es/ecma262/#sec-object.freeze
|
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::freeze)
|
|
|
|
{
|
|
|
|
auto argument = vm.argument(0);
|
|
|
|
if (!argument.is_object())
|
|
|
|
return argument;
|
|
|
|
auto status = argument.as_object().set_integrity_level(Object::IntegrityLevel::Frozen);
|
|
|
|
if (vm.exception())
|
|
|
|
return {};
|
|
|
|
if (!status) {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ObjectFreezeFailed);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return argument;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 20.1.2.20 Object.seal, https://tc39.es/ecma262/#sec-object.seal
|
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::seal)
|
|
|
|
{
|
|
|
|
auto argument = vm.argument(0);
|
|
|
|
if (!argument.is_object())
|
|
|
|
return argument;
|
|
|
|
auto status = argument.as_object().set_integrity_level(Object::IntegrityLevel::Sealed);
|
|
|
|
if (vm.exception())
|
|
|
|
return {};
|
|
|
|
if (!status) {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ObjectSealFailed);
|
2020-06-01 21:13:16 -07:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return argument;
|
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::get_own_property_descriptor)
|
2020-04-09 22:15:26 +02:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
auto* object = vm.argument(0).to_object(global_object);
|
|
|
|
if (vm.exception())
|
2020-04-25 18:43:34 +02:00
|
|
|
return {};
|
2020-09-27 18:36:49 +02:00
|
|
|
auto property_key = PropertyName::from_value(global_object, vm.argument(1));
|
|
|
|
if (vm.exception())
|
2020-05-15 13:39:24 +02:00
|
|
|
return {};
|
2020-06-03 09:40:17 -07:00
|
|
|
return object->get_own_property_descriptor_object(property_key);
|
2020-04-09 22:15:26 +02:00
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::define_property_)
|
2020-04-09 22:15:26 +02:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
if (!vm.argument(0).is_object()) {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::NotAnObject, "Object argument");
|
2020-08-25 12:52:32 +02:00
|
|
|
return {};
|
|
|
|
}
|
2020-09-27 18:36:49 +02:00
|
|
|
if (!vm.argument(2).is_object()) {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::NotAnObject, "Descriptor argument");
|
2020-08-25 12:52:32 +02:00
|
|
|
return {};
|
|
|
|
}
|
2020-09-27 18:36:49 +02:00
|
|
|
auto& object = vm.argument(0).as_object();
|
|
|
|
auto property_key = StringOrSymbol::from_value(global_object, vm.argument(1));
|
|
|
|
if (vm.exception())
|
2020-05-15 13:39:24 +02:00
|
|
|
return {};
|
2020-09-27 18:36:49 +02:00
|
|
|
auto& descriptor = vm.argument(2).as_object();
|
2020-06-03 14:34:52 -07:00
|
|
|
if (!object.define_property(property_key, descriptor)) {
|
2020-09-27 18:36:49 +02:00
|
|
|
if (!vm.exception()) {
|
2021-01-01 17:46:39 +01:00
|
|
|
if (AK::is<ProxyObject>(object)) {
|
2020-09-27 18:36:49 +02:00
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ObjectDefinePropertyReturnedFalse);
|
2020-06-03 14:34:52 -07:00
|
|
|
} else {
|
2020-10-04 13:55:20 +01:00
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::NonExtensibleDefine, property_key.to_display_string());
|
2020-06-03 14:34:52 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
2020-04-09 22:15:26 +02:00
|
|
|
return &object;
|
|
|
|
}
|
|
|
|
|
2021-04-10 18:39:11 +02:00
|
|
|
// 20.1.2.3 Object.defineProperties, https://tc39.es/ecma262/#sec-object.defineproperties
|
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::define_properties)
|
|
|
|
{
|
|
|
|
if (!vm.argument(0).is_object()) {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::NotAnObject, "Object argument");
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
auto& object = vm.argument(0).as_object();
|
|
|
|
auto properties = vm.argument(1);
|
|
|
|
object.define_properties(properties);
|
|
|
|
if (vm.exception())
|
|
|
|
return {};
|
|
|
|
return &object;
|
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::is)
|
2020-04-26 00:27:54 +01:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
return Value(same_value(vm.argument(0), vm.argument(1)));
|
2020-04-26 00:27:54 +01:00
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::keys)
|
2020-04-29 18:59:23 -07:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
if (!vm.argument_count()) {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ConvertUndefinedToObject);
|
2020-08-25 12:52:32 +02:00
|
|
|
return {};
|
|
|
|
}
|
2020-04-29 18:59:23 -07:00
|
|
|
|
2020-09-27 18:36:49 +02:00
|
|
|
auto* obj_arg = vm.argument(0).to_object(global_object);
|
|
|
|
if (vm.exception())
|
2020-04-29 18:59:23 -07:00
|
|
|
return {};
|
|
|
|
|
2021-04-06 21:39:17 +02:00
|
|
|
return Array::create_from(global_object, obj_arg->get_enumerable_own_property_names(PropertyKind::Key));
|
2020-04-29 18:59:23 -07:00
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::values)
|
2020-04-29 18:59:23 -07:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
if (!vm.argument_count()) {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ConvertUndefinedToObject);
|
2020-08-25 12:52:32 +02:00
|
|
|
return {};
|
|
|
|
}
|
2020-09-27 18:36:49 +02:00
|
|
|
auto* obj_arg = vm.argument(0).to_object(global_object);
|
|
|
|
if (vm.exception())
|
2020-04-29 18:59:23 -07:00
|
|
|
return {};
|
|
|
|
|
2021-04-06 21:39:17 +02:00
|
|
|
return Array::create_from(global_object, obj_arg->get_enumerable_own_property_names(PropertyKind::Value));
|
2020-04-29 18:59:23 -07:00
|
|
|
}
|
|
|
|
|
2020-06-20 13:55:34 +02:00
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::entries)
|
2020-04-29 18:59:23 -07:00
|
|
|
{
|
2020-09-27 18:36:49 +02:00
|
|
|
if (!vm.argument_count()) {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ConvertUndefinedToObject);
|
2020-08-25 12:52:32 +02:00
|
|
|
return {};
|
|
|
|
}
|
2020-09-27 18:36:49 +02:00
|
|
|
auto* obj_arg = vm.argument(0).to_object(global_object);
|
|
|
|
if (vm.exception())
|
2020-04-29 18:59:23 -07:00
|
|
|
return {};
|
|
|
|
|
2021-04-06 21:39:17 +02:00
|
|
|
return Array::create_from(global_object, obj_arg->get_enumerable_own_property_names(PropertyKind::KeyAndValue));
|
2020-04-29 18:59:23 -07:00
|
|
|
}
|
|
|
|
|
2021-04-10 18:40:12 +02:00
|
|
|
// 20.1.2.2 Object.create, https://tc39.es/ecma262/#sec-object.create
|
|
|
|
JS_DEFINE_NATIVE_FUNCTION(ObjectConstructor::create)
|
|
|
|
{
|
|
|
|
auto prototype_value = vm.argument(0);
|
|
|
|
auto properties = vm.argument(1);
|
|
|
|
|
|
|
|
Object* prototype;
|
|
|
|
if (prototype_value.is_null()) {
|
|
|
|
prototype = nullptr;
|
|
|
|
} else if (prototype_value.is_object()) {
|
|
|
|
prototype = &prototype_value.as_object();
|
|
|
|
} else {
|
|
|
|
vm.throw_exception<TypeError>(global_object, ErrorType::ObjectPrototypeWrongType);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* object = Object::create_empty(global_object);
|
|
|
|
object->set_prototype(prototype);
|
|
|
|
|
|
|
|
if (!properties.is_undefined()) {
|
|
|
|
object->define_properties(properties);
|
|
|
|
if (vm.exception())
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
2020-03-28 17:23:54 +01:00
|
|
|
}
|