blob: 8b077c7f515e24df2dcbf49c4a921121189b9d17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/HashTable.h>
#include <LibJS/Runtime/Object.h>
#include <LibJS/Runtime/Set.h>
namespace JS {
class SetIterator final : public Object {
JS_OBJECT(SetIterator, Object);
public:
static SetIterator* create(Realm&, Set& set, Object::PropertyKind iteration_kind);
explicit SetIterator(Set& set, Object::PropertyKind iteration_kind, Object& prototype);
virtual ~SetIterator() override = default;
Set& set() const { return m_set; }
bool done() const { return m_done; }
Object::PropertyKind iteration_kind() const { return m_iteration_kind; }
private:
friend class SetIteratorPrototype;
virtual void visit_edges(Cell::Visitor&) override;
Set& m_set;
bool m_done { false };
Object::PropertyKind m_iteration_kind;
Map::ConstIterator m_iterator;
};
}
|