
This is an editorial change in the Iterator Helpers proposal. See: https://github.com/tc39/proposal-iterator-helpers/commit/b4ccc31
50 lines
1.6 KiB
C++
50 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibJS/Heap/HeapFunction.h>
|
|
#include <LibJS/Runtime/Completion.h>
|
|
#include <LibJS/Runtime/GeneratorObject.h>
|
|
#include <LibJS/Runtime/Iterator.h>
|
|
#include <LibJS/Runtime/Object.h>
|
|
|
|
namespace JS {
|
|
|
|
class IteratorHelper final : public GeneratorObject {
|
|
JS_OBJECT(IteratorHelper, GeneratorObject);
|
|
JS_DECLARE_ALLOCATOR(IteratorHelper);
|
|
|
|
public:
|
|
using Closure = JS::HeapFunction<ThrowCompletionOr<Value>(VM&, IteratorHelper&)>;
|
|
using AbruptClosure = JS::HeapFunction<ThrowCompletionOr<Value>(VM&, IteratorHelper&, Completion const&)>;
|
|
|
|
static ThrowCompletionOr<NonnullGCPtr<IteratorHelper>> create(Realm&, NonnullGCPtr<IteratorRecord>, NonnullGCPtr<Closure>, GCPtr<AbruptClosure> = {});
|
|
|
|
IteratorRecord& underlying_iterator() { return m_underlying_iterator; }
|
|
IteratorRecord const& underlying_iterator() const { return m_underlying_iterator; }
|
|
|
|
size_t counter() const { return m_counter; }
|
|
void increment_counter() { ++m_counter; }
|
|
|
|
Value result(Value);
|
|
ThrowCompletionOr<Value> close_result(VM&, Completion);
|
|
|
|
private:
|
|
IteratorHelper(Realm&, Object& prototype, NonnullGCPtr<IteratorRecord>, NonnullGCPtr<Closure>, GCPtr<AbruptClosure>);
|
|
|
|
virtual void visit_edges(Visitor&) override;
|
|
virtual ThrowCompletionOr<Value> execute(VM&, JS::Completion const& completion) override;
|
|
|
|
NonnullGCPtr<IteratorRecord> m_underlying_iterator; // [[UnderlyingIterator]]
|
|
NonnullGCPtr<Closure> m_closure;
|
|
GCPtr<AbruptClosure> m_abrupt_closure;
|
|
|
|
size_t m_counter { 0 };
|
|
bool m_done { false };
|
|
};
|
|
|
|
}
|