1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-08 13:37:10 +09:00
ladybird/Libraries/LibJS/Runtime/StringIterator.h
Aliaksandr Kalenik ab52d86a69 LibJS: Allow advancing built-in iterators without result object creation
Expose a method on built-in iterators that allows retrieving the next
iteration result without allocating a JS::Object. This change is a
preparation for optimizing for..of and for..in loops.
2025-04-30 20:51:39 +02:00

39 lines
897 B
C++

/*
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
#include <AK/Utf8View.h>
#include <LibJS/Runtime/Iterator.h>
#include <LibJS/Runtime/Object.h>
namespace JS {
class StringIterator final : public Object
, public BuiltinIterator {
JS_OBJECT(StringIterator, Object);
GC_DECLARE_ALLOCATOR(StringIterator);
public:
static GC::Ref<StringIterator> create(Realm&, String string);
virtual ~StringIterator() override = default;
BuiltinIterator* as_builtin_iterator() override { return this; }
ThrowCompletionOr<void> next(VM&, bool& done, Value& value) override;
private:
explicit StringIterator(String string, Object& prototype);
friend class StringIteratorPrototype;
String m_string;
Utf8CodePointIterator m_iterator;
bool m_done { false };
};
}