2021-06-09 19:23:04 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2021-06-20 01:09:39 +01:00
|
|
|
#include <LibJS/Runtime/AbstractOperations.h>
|
2021-06-09 19:23:04 +03:00
|
|
|
#include <LibJS/Runtime/Error.h>
|
|
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
|
|
|
#include <LibJS/Runtime/IteratorOperations.h>
|
|
|
|
#include <LibJS/Runtime/WeakSet.h>
|
|
|
|
#include <LibJS/Runtime/WeakSetConstructor.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
2022-08-16 00:20:49 +01:00
|
|
|
WeakSetConstructor::WeakSetConstructor(Realm& realm)
|
2022-09-14 19:10:27 -04:00
|
|
|
: NativeFunction(realm.vm().names.WeakSet.as_string(), *realm.intrinsics().function_prototype())
|
2021-06-09 19:23:04 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-08-16 00:20:49 +01:00
|
|
|
void WeakSetConstructor::initialize(Realm& realm)
|
2021-06-09 19:23:04 +03:00
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
2022-08-16 00:20:49 +01:00
|
|
|
NativeFunction::initialize(realm);
|
2021-06-19 00:38:41 +01:00
|
|
|
|
|
|
|
// 24.4.2.1 WeakSet.prototype, https://tc39.es/ecma262/#sec-weakset.prototype
|
2022-08-27 00:54:55 +01:00
|
|
|
define_direct_property(vm.names.prototype, realm.intrinsics().weak_set_prototype(), 0);
|
2021-06-19 00:38:41 +01:00
|
|
|
|
2021-07-06 02:15:08 +03:00
|
|
|
define_direct_property(vm.names.length, Value(0), Attribute::Configurable);
|
2021-06-09 19:23:04 +03:00
|
|
|
}
|
|
|
|
|
2021-06-19 00:38:41 +01:00
|
|
|
// 24.4.1.1 WeakSet ( [ iterable ] ), https://tc39.es/ecma262/#sec-weakset-iterable
|
2021-10-20 21:16:30 +01:00
|
|
|
ThrowCompletionOr<Value> WeakSetConstructor::call()
|
2021-06-09 19:23:04 +03:00
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
2022-08-16 20:33:17 +01:00
|
|
|
return vm.throw_completion<TypeError>(ErrorType::ConstructorWithoutNew, vm.names.WeakSet);
|
2021-06-09 19:23:04 +03:00
|
|
|
}
|
|
|
|
|
2021-06-19 00:38:41 +01:00
|
|
|
// 24.4.1.1 WeakSet ( [ iterable ] ), https://tc39.es/ecma262/#sec-weakset-iterable
|
2022-12-14 19:18:10 +00:00
|
|
|
ThrowCompletionOr<NonnullGCPtr<Object>> WeakSetConstructor::construct(FunctionObject& new_target)
|
2021-06-09 19:23:04 +03:00
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
2021-06-20 01:09:39 +01:00
|
|
|
|
2022-12-14 18:34:32 +00:00
|
|
|
auto weak_set = TRY(ordinary_create_from_constructor<WeakSet>(vm, new_target, &Intrinsics::weak_set_prototype));
|
2021-06-20 01:09:39 +01:00
|
|
|
|
2021-06-09 19:23:04 +03:00
|
|
|
if (vm.argument(0).is_nullish())
|
2022-12-14 19:18:10 +00:00
|
|
|
return weak_set;
|
2021-06-09 19:23:04 +03:00
|
|
|
|
2021-10-20 21:16:30 +01:00
|
|
|
auto adder = TRY(weak_set->get(vm.names.add));
|
|
|
|
if (!adder.is_function())
|
2022-08-16 20:33:17 +01:00
|
|
|
return vm.throw_completion<TypeError>(ErrorType::NotAFunction, "'add' property of WeakSet");
|
2021-10-20 12:10:23 -04:00
|
|
|
|
2022-08-21 15:56:27 +01:00
|
|
|
(void)TRY(get_iterator_values(vm, vm.argument(0), [&](Value iterator_value) -> Optional<Completion> {
|
2022-08-21 19:24:32 +01:00
|
|
|
TRY(JS::call(vm, adder.as_function(), weak_set, iterator_value));
|
2021-06-09 19:23:04 +03:00
|
|
|
return {};
|
2021-10-20 12:10:23 -04:00
|
|
|
}));
|
|
|
|
|
2022-12-14 19:18:10 +00:00
|
|
|
return weak_set;
|
2021-06-09 19:23:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|