/* * Copyright (c) 2021, Ali Mohammad Pur * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace JS { class GeneratorObject final : public Object { JS_OBJECT(GeneratorObject, Object); public: static GeneratorObject* create(GlobalObject&, Value, ScriptFunction*, EnvironmentRecord*, Bytecode::RegisterWindow); GeneratorObject(GlobalObject&, Object& prototype); virtual void initialize(GlobalObject&) override; virtual ~GeneratorObject() override; void visit_edges(Cell::Visitor&) override; Value next_impl(VM&, GlobalObject&, Optional value_to_throw); void set_done() { m_done = true; } private: EnvironmentRecord* m_environment_record { nullptr }; ScriptFunction* m_generating_function { nullptr }; Value m_previous_value; Bytecode::RegisterWindow m_frame; bool m_done { false }; }; }