| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-04-22 16:53:07 -07:00
										 |  |  |  * Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org> | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-04-22 01:24:48 -07:00
										 |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  | #include <LibJS/Runtime/Error.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/GlobalObject.h>
 | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | #include <LibJS/Runtime/IteratorOperations.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace JS { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 00:22:35 +01:00
										 |  |  | // 7.4.1 GetIterator ( obj [ , hint [ , method ] ] ), https://tc39.es/ecma262/#sec-getiterator
 | 
					
						
							| 
									
										
										
										
											2021-06-02 20:52:46 +01:00
										 |  |  | Object* get_iterator(GlobalObject& global_object, Value value, IteratorHint hint, Value method) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     auto& vm = global_object.vm(); | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |     if (method.is_empty()) { | 
					
						
							| 
									
										
										
										
											2021-06-02 20:52:46 +01:00
										 |  |  |         if (hint == IteratorHint::Async) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |             TODO(); | 
					
						
							| 
									
										
										
										
											2020-09-27 18:36:49 +02:00
										 |  |  |         auto object = value.to_object(global_object); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |         if (!object) | 
					
						
							|  |  |  |             return {}; | 
					
						
							| 
									
										
										
										
											2020-09-22 16:18:51 +02:00
										 |  |  |         method = object->get(global_object.vm().well_known_symbol_iterator()); | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |             return {}; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     if (!method.is_function()) { | 
					
						
							| 
									
										
										
										
											2020-10-04 13:55:20 +01:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::NotIterable, value.to_string_without_side_effects()); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |         return nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     auto iterator = vm.call(method.as_function(), value); | 
					
						
							|  |  |  |     if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |         return {}; | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     if (!iterator.is_object()) { | 
					
						
							| 
									
										
										
										
											2020-10-04 13:55:20 +01:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::NotIterable, value.to_string_without_side_effects()); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |         return nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |     return &iterator.as_object(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 00:22:35 +01:00
										 |  |  | // 7.4.2 IteratorNext ( iteratorRecord [ , value ] ), https://tc39.es/ecma262/#sec-iteratornext
 | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  | Object* iterator_next(Object& iterator, Value value) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     auto& vm = iterator.vm(); | 
					
						
							| 
									
										
										
										
											2020-09-27 15:18:55 +02:00
										 |  |  |     auto& global_object = iterator.global_object(); | 
					
						
							| 
									
										
										
										
											2021-06-14 13:46:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 23:49:19 +02:00
										 |  |  |     auto next_method = iterator.get(vm.names.next); | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |         return {}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     if (!next_method.is_function()) { | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::IterableNextNotAFunction); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |         return nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Value result; | 
					
						
							| 
									
										
										
										
											2020-08-25 22:18:32 +04:30
										 |  |  |     if (value.is_empty()) | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         result = vm.call(next_method.as_function(), &iterator); | 
					
						
							| 
									
										
										
										
											2020-08-25 22:18:32 +04:30
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         result = vm.call(next_method.as_function(), &iterator, value); | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |         return {}; | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     if (!result.is_object()) { | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::IterableNextBadReturn); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |         return nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     return &result.as_object(); | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 00:22:35 +01:00
										 |  |  | // 7.4.6 IteratorClose ( iteratorRecord, completion ), https://tc39.es/ecma262/#sec-iteratorclose
 | 
					
						
							| 
									
										
										
										
											2021-06-14 13:46:02 +03:00
										 |  |  | void iterator_close(Object& iterator) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-14 13:46:02 +03:00
										 |  |  |     auto& vm = iterator.vm(); | 
					
						
							|  |  |  |     auto& global_object = iterator.global_object(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Emulates `completion` behaviour
 | 
					
						
							|  |  |  |     auto* completion_exception = vm.exception(); | 
					
						
							|  |  |  |     vm.clear_exception(); | 
					
						
							|  |  |  |     auto unwind_until = vm.unwind_until(); | 
					
						
							|  |  |  |     auto unwind_until_label = vm.unwind_until_label(); | 
					
						
							|  |  |  |     vm.stop_unwind(); | 
					
						
							|  |  |  |     auto restore_completion = [&]() { | 
					
						
							|  |  |  |         if (completion_exception) | 
					
						
							|  |  |  |             vm.set_exception(*completion_exception); | 
					
						
							|  |  |  |         if (unwind_until != ScopeType::None) | 
					
						
							|  |  |  |             vm.unwind(unwind_until, unwind_until_label); | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto return_method = get_method(global_object, &iterator, vm.names.return_); | 
					
						
							|  |  |  |     if (!return_method) | 
					
						
							|  |  |  |         return restore_completion(); // If return is undefined, return Completion(completion).
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto result = vm.call(*return_method, &iterator); | 
					
						
							|  |  |  |     if (completion_exception) | 
					
						
							|  |  |  |         return restore_completion(); // If completion.[[Type]] is throw, return Completion(completion).
 | 
					
						
							|  |  |  |     if (vm.exception()) | 
					
						
							|  |  |  |         return; // If innerResult.[[Type]] is throw, return Completion(innerResult).
 | 
					
						
							|  |  |  |     if (!result.is_object()) { | 
					
						
							|  |  |  |         vm.throw_exception<TypeError>(global_object, ErrorType::IterableReturnBadReturn); | 
					
						
							|  |  |  |         return; // If Type(innerResult.[[Value]]) is not Object, throw a TypeError exception.
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     restore_completion(); // Return Completion(completion).
 | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 00:22:35 +01:00
										 |  |  | // 7.4.10 IterableToList ( items [ , method ] ), https://tc39.es/ecma262/#sec-iterabletolist
 | 
					
						
							| 
									
										
										
										
											2021-04-16 23:54:41 +03:00
										 |  |  | MarkedValueList iterable_to_list(GlobalObject& global_object, Value iterable, Value method) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto& vm = global_object.vm(); | 
					
						
							|  |  |  |     MarkedValueList values(vm.heap()); | 
					
						
							|  |  |  |     get_iterator_values( | 
					
						
							|  |  |  |         global_object, iterable, [&](auto value) { | 
					
						
							|  |  |  |             if (vm.exception()) | 
					
						
							|  |  |  |                 return IterationDecision::Break; | 
					
						
							|  |  |  |             values.append(value); | 
					
						
							|  |  |  |             return IterationDecision::Continue; | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2021-06-14 13:46:02 +03:00
										 |  |  |         method, CloseOnAbrupt::No); | 
					
						
							| 
									
										
										
										
											2021-04-16 23:54:41 +03:00
										 |  |  |     return values; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 00:22:35 +01:00
										 |  |  | // 7.4.8 CreateIterResultObject ( value, done ), https://tc39.es/ecma262/#sec-createiterresultobject
 | 
					
						
							| 
									
										
										
										
											2020-07-22 17:50:18 +02:00
										 |  |  | Value create_iterator_result_object(GlobalObject& global_object, Value value, bool done) | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-13 23:49:19 +02:00
										 |  |  |     auto& vm = global_object.vm(); | 
					
						
							| 
									
										
										
										
											2020-07-22 17:50:18 +02:00
										 |  |  |     auto* object = Object::create_empty(global_object); | 
					
						
							| 
									
										
										
										
											2020-10-13 23:49:19 +02:00
										 |  |  |     object->define_property(vm.names.value, value); | 
					
						
							|  |  |  |     object->define_property(vm.names.done, Value(done)); | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  |     return object; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-14 13:46:02 +03:00
										 |  |  | void get_iterator_values(GlobalObject& global_object, Value value, AK::Function<IterationDecision(Value)> callback, Value method, CloseOnAbrupt close_on_abrupt) | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |     auto& vm = global_object.vm(); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 20:52:46 +01:00
										 |  |  |     auto iterator = get_iterator(global_object, value, IteratorHint::Sync, method); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     if (!iterator) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (true) { | 
					
						
							|  |  |  |         auto next_object = iterator_next(*iterator); | 
					
						
							|  |  |  |         if (!next_object) | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 23:49:19 +02:00
										 |  |  |         auto done_property = next_object->get(vm.names.done); | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |             return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!done_property.is_empty() && done_property.to_boolean()) | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 23:49:19 +02:00
										 |  |  |         auto next_value = next_object->get(vm.names.value); | 
					
						
							| 
									
										
										
										
											2020-09-27 20:19:53 +02:00
										 |  |  |         if (vm.exception()) | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |             return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         auto result = callback(next_value); | 
					
						
							| 
									
										
										
										
											2021-06-14 13:46:02 +03:00
										 |  |  |         if (result == IterationDecision::Break) { | 
					
						
							|  |  |  |             if (close_on_abrupt == CloseOnAbrupt::Yes) | 
					
						
							|  |  |  |                 iterator_close(*iterator); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |             return; | 
					
						
							| 
									
										
										
										
											2021-06-14 13:46:02 +03:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |         VERIFY(result == IterationDecision::Continue); | 
					
						
							| 
									
										
										
										
											2020-07-13 08:27:20 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-09 14:58:20 -07:00
										 |  |  | } |