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