mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 08:03:21 +00:00
36 lines
830 B
C++
36 lines
830 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibJS/Runtime/GlobalObject.h>
|
||
|
#include <LibJS/Runtime/SetIterator.h>
|
||
|
|
||
|
namespace JS {
|
||
|
|
||
|
SetIterator* SetIterator::create(GlobalObject& global_object, Set& set, Object::PropertyKind iteration_kind)
|
||
|
{
|
||
|
return global_object.heap().allocate<SetIterator>(global_object, *global_object.set_iterator_prototype(), set, iteration_kind);
|
||
|
}
|
||
|
|
||
|
SetIterator::SetIterator(Object& prototype, Set& set, Object::PropertyKind iteration_kind)
|
||
|
: Object(prototype)
|
||
|
, m_set(set)
|
||
|
, m_iteration_kind(iteration_kind)
|
||
|
, m_iterator(set.values().begin())
|
||
|
{
|
||
|
}
|
||
|
|
||
|
SetIterator::~SetIterator()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void SetIterator::visit_edges(Cell::Visitor& visitor)
|
||
|
{
|
||
|
Base::visit_edges(visitor);
|
||
|
visitor.visit(&m_set);
|
||
|
}
|
||
|
|
||
|
}
|