2021-06-09 16:23:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2021-06-20 00:09:39 +00:00
|
|
|
#include <LibJS/Runtime/AbstractOperations.h>
|
2021-06-09 16:23:04 +00:00
|
|
|
#include <LibJS/Runtime/Error.h>
|
|
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
2023-07-19 10:54:48 +00:00
|
|
|
#include <LibJS/Runtime/Iterator.h>
|
2021-06-09 16:23:04 +00:00
|
|
|
#include <LibJS/Runtime/WeakSet.h>
|
|
|
|
#include <LibJS/Runtime/WeakSetConstructor.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
2024-11-14 15:01:23 +00:00
|
|
|
GC_DEFINE_ALLOCATOR(WeakSetConstructor);
|
2023-11-19 08:45:05 +00:00
|
|
|
|
2022-08-15 23:20:49 +00:00
|
|
|
WeakSetConstructor::WeakSetConstructor(Realm& realm)
|
2023-04-12 22:47:15 +00:00
|
|
|
: NativeFunction(realm.vm().names.WeakSet.as_string(), realm.intrinsics().function_prototype())
|
2021-06-09 16:23:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-08-07 06:41:28 +00:00
|
|
|
void WeakSetConstructor::initialize(Realm& realm)
|
2021-06-09 16:23:04 +00:00
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
2023-08-07 06:41:28 +00:00
|
|
|
Base::initialize(realm);
|
2021-06-18 23:38:41 +00:00
|
|
|
|
|
|
|
// 24.4.2.1 WeakSet.prototype, https://tc39.es/ecma262/#sec-weakset.prototype
|
2022-08-26 23:54:55 +00:00
|
|
|
define_direct_property(vm.names.prototype, realm.intrinsics().weak_set_prototype(), 0);
|
2021-06-18 23:38:41 +00:00
|
|
|
|
2021-07-05 23:15:08 +00:00
|
|
|
define_direct_property(vm.names.length, Value(0), Attribute::Configurable);
|
2021-06-09 16:23:04 +00:00
|
|
|
}
|
|
|
|
|
2021-06-18 23:38:41 +00:00
|
|
|
// 24.4.1.1 WeakSet ( [ iterable ] ), https://tc39.es/ecma262/#sec-weakset-iterable
|
2021-10-20 20:16:30 +00:00
|
|
|
ThrowCompletionOr<Value> WeakSetConstructor::call()
|
2021-06-09 16:23:04 +00:00
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
2023-04-12 21:15:53 +00:00
|
|
|
|
|
|
|
// 1. If NewTarget is undefined, throw a TypeError exception.
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<TypeError>(ErrorType::ConstructorWithoutNew, vm.names.WeakSet);
|
2021-06-09 16:23:04 +00:00
|
|
|
}
|
|
|
|
|
2021-06-18 23:38:41 +00:00
|
|
|
// 24.4.1.1 WeakSet ( [ iterable ] ), https://tc39.es/ecma262/#sec-weakset-iterable
|
2024-11-14 15:01:23 +00:00
|
|
|
ThrowCompletionOr<GC::Ref<Object>> WeakSetConstructor::construct(FunctionObject& new_target)
|
2021-06-09 16:23:04 +00:00
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
2023-04-12 21:15:53 +00:00
|
|
|
auto iterable = vm.argument(0);
|
|
|
|
|
|
|
|
// 2. Let set be ? OrdinaryCreateFromConstructor(NewTarget, "%WeakSet.prototype%", « [[WeakSetData]] »).
|
|
|
|
// 3. Set set.[[WeakSetData]] to a new empty List.
|
|
|
|
auto set = TRY(ordinary_create_from_constructor<WeakSet>(vm, new_target, &Intrinsics::weak_set_prototype));
|
2021-06-20 00:09:39 +00:00
|
|
|
|
2023-04-12 21:15:53 +00:00
|
|
|
// 4. If iterable is either undefined or null, return set.
|
|
|
|
if (iterable.is_nullish())
|
|
|
|
return set;
|
2021-06-20 00:09:39 +00:00
|
|
|
|
2023-04-12 21:15:53 +00:00
|
|
|
// 5. Let adder be ? Get(set, "add").
|
|
|
|
auto adder = TRY(set->get(vm.names.add));
|
2021-06-09 16:23:04 +00:00
|
|
|
|
2023-04-12 21:15:53 +00:00
|
|
|
// 6. If IsCallable(adder) is false, throw a TypeError exception.
|
2021-10-20 20:16:30 +00:00
|
|
|
if (!adder.is_function())
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<TypeError>(ErrorType::NotAFunction, "'add' property of WeakSet");
|
2021-10-20 16:10:23 +00:00
|
|
|
|
2023-04-12 21:15:53 +00:00
|
|
|
// 7. Let iteratorRecord be ? GetIterator(iterable, sync).
|
|
|
|
// 8. Repeat,
|
2024-02-01 19:53:28 +00:00
|
|
|
(void)TRY(get_iterator_values(vm, iterable, [&](Value next) -> Optional<Completion> {
|
|
|
|
// a. Let next be ? IteratorStepValue(iteratorRecord).
|
|
|
|
// c. If next is DONE, return set.
|
|
|
|
// c. Let status be Completion(Call(adder, set, « nextValue »)).
|
|
|
|
// d. IfAbruptCloseIterator(status, iteratorRecord).
|
|
|
|
TRY(JS::call(vm, adder.as_function(), set, next));
|
2021-06-09 16:23:04 +00:00
|
|
|
return {};
|
2021-10-20 16:10:23 +00:00
|
|
|
}));
|
|
|
|
|
2023-04-12 21:15:53 +00:00
|
|
|
// b. If next is false, return set.
|
|
|
|
return set;
|
2021-06-09 16:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|