| 
									
										
										
										
											2021-06-09 00:08:47 +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 00:08:47 +03:00
										 |  |  | #include <LibJS/Runtime/Error.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/GlobalObject.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/IteratorOperations.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/Set.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/SetConstructor.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace JS { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SetConstructor::SetConstructor(GlobalObject& global_object) | 
					
						
							|  |  |  |     : NativeFunction(vm().names.Set, *global_object.function_prototype()) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SetConstructor::initialize(GlobalObject& global_object) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto& vm = this->vm(); | 
					
						
							|  |  |  |     NativeFunction::initialize(global_object); | 
					
						
							| 
									
										
										
										
											2021-06-13 20:10:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // 24.2.2.1 Set.prototype, https://tc39.es/ecma262/#sec-set.prototype
 | 
					
						
							| 
									
										
										
										
											2021-06-09 00:08:47 +03:00
										 |  |  |     define_property(vm.names.prototype, global_object.set_prototype(), 0); | 
					
						
							| 
									
										
										
										
											2021-06-13 20:10:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-09 00:08:47 +03:00
										 |  |  |     define_property(vm.names.length, Value(0), Attribute::Configurable); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-25 18:37:14 +01:00
										 |  |  |     define_native_accessor(*vm.well_known_symbol_species(), symbol_species_getter, {}, Attribute::Configurable); | 
					
						
							| 
									
										
										
										
											2021-06-09 00:08:47 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SetConstructor::~SetConstructor() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-19 00:38:41 +01:00
										 |  |  | // 24.2.1.1 Set ( [ iterable ] ), https://tc39.es/ecma262/#sec-set-iterable
 | 
					
						
							| 
									
										
										
										
											2021-06-09 00:08:47 +03:00
										 |  |  | Value SetConstructor::call() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto& vm = this->vm(); | 
					
						
							|  |  |  |     vm.throw_exception<TypeError>(global_object(), ErrorType::ConstructorWithoutNew, vm.names.Set); | 
					
						
							|  |  |  |     return {}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-19 00:38:41 +01:00
										 |  |  | // 24.2.1.1 Set ( [ iterable ] ), https://tc39.es/ecma262/#sec-set-iterable
 | 
					
						
							| 
									
										
										
										
											2021-06-20 01:09:39 +01:00
										 |  |  | Value SetConstructor::construct(Function& new_target) | 
					
						
							| 
									
										
										
										
											2021-06-09 00:08:47 +03:00
										 |  |  | { | 
					
						
							|  |  |  |     auto& vm = this->vm(); | 
					
						
							| 
									
										
										
										
											2021-06-20 01:09:39 +01:00
										 |  |  |     auto& global_object = this->global_object(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto* set = ordinary_create_from_constructor<Set>(global_object, new_target, &GlobalObject::set_prototype); | 
					
						
							|  |  |  |     if (vm.exception()) | 
					
						
							|  |  |  |         return {}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-09 00:08:47 +03:00
										 |  |  |     if (vm.argument(0).is_nullish()) | 
					
						
							| 
									
										
										
										
											2021-06-20 01:09:39 +01:00
										 |  |  |         return set; | 
					
						
							| 
									
										
										
										
											2021-06-09 00:08:47 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     auto adder = set->get(vm.names.add); | 
					
						
							|  |  |  |     if (vm.exception()) | 
					
						
							|  |  |  |         return {}; | 
					
						
							|  |  |  |     if (!adder.is_function()) { | 
					
						
							| 
									
										
										
										
											2021-06-20 01:09:39 +01:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::NotAFunction, "'add' property of Set"); | 
					
						
							| 
									
										
										
										
											2021-06-09 00:08:47 +03:00
										 |  |  |         return {}; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-06-20 01:09:39 +01:00
										 |  |  |     get_iterator_values(global_object, vm.argument(0), [&](Value iterator_value) { | 
					
						
							| 
									
										
										
										
											2021-06-09 00:08:47 +03:00
										 |  |  |         if (vm.exception()) | 
					
						
							|  |  |  |             return IterationDecision::Break; | 
					
						
							|  |  |  |         (void)vm.call(adder.as_function(), Value(set), iterator_value); | 
					
						
							|  |  |  |         return vm.exception() ? IterationDecision::Break : IterationDecision::Continue; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     if (vm.exception()) | 
					
						
							|  |  |  |         return {}; | 
					
						
							|  |  |  |     return set; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-19 00:38:41 +01:00
										 |  |  | // 24.2.2.2 get Set [ @@species ], https://tc39.es/ecma262/#sec-get-set-@@species
 | 
					
						
							| 
									
										
										
										
											2021-06-09 00:08:47 +03:00
										 |  |  | JS_DEFINE_NATIVE_GETTER(SetConstructor::symbol_species_getter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return vm.this_value(global_object); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |