blob: 52ba4d4c8a1b87358b35ac5d349850c3b0e87048 (
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/HashMap.h>
#include <LibJS/Runtime/Map.h>
#include <LibJS/Runtime/Object.h>
namespace JS {
class MapIterator final : public Object {
JS_OBJECT(MapIterator, Object);
public:
static MapIterator* create(GlobalObject&, Map& map, Object::PropertyKind iteration_kind);
explicit MapIterator(Map& map, Object::PropertyKind iteration_kind, Object& prototype);
virtual ~MapIterator() override;
Map& map() const { return m_map; }
bool done() const { return m_done; }
Object::PropertyKind iteration_kind() const { return m_iteration_kind; }
private:
friend class MapIteratorPrototype;
virtual void visit_edges(Cell::Visitor&) override;
Map& m_map;
bool m_done { false };
Object::PropertyKind m_iteration_kind;
OrderedHashMap<Value, Value, ValueTraits>::IteratorType m_iterator;
};
}
|