mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-28 18:40:29 +00:00
f87041bf3a
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2022, Idan Horowitz <idan.horowitz@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Utf16View.h>
|
|
#include <LibJS/Runtime/Intl/Segmenter.h>
|
|
#include <LibJS/Runtime/Object.h>
|
|
#include <LibUnicode/Segmenter.h>
|
|
|
|
namespace JS::Intl {
|
|
|
|
class SegmentIterator final : public Object {
|
|
JS_OBJECT(SegmentIterator, Object);
|
|
GC_DECLARE_ALLOCATOR(SegmentIterator);
|
|
|
|
public:
|
|
static GC::Ref<SegmentIterator> create(Realm&, Unicode::Segmenter const&, Utf16View const&, Segments const&);
|
|
|
|
virtual ~SegmentIterator() override = default;
|
|
|
|
Unicode::Segmenter& iterating_segmenter() { return *m_iterating_segmenter; }
|
|
Utf16View const& iterated_string() const { return m_iterated_string; }
|
|
size_t iterated_string_next_segment_code_unit_index() const { return m_iterating_segmenter->current_boundary(); }
|
|
|
|
Segments const& segments() { return m_segments; }
|
|
|
|
private:
|
|
SegmentIterator(Realm&, Unicode::Segmenter const&, Utf16View const&, Segments const&);
|
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
NonnullOwnPtr<Unicode::Segmenter> m_iterating_segmenter; // [[IteratingSegmenter]]
|
|
Utf16View m_iterated_string; // [[IteratedString]]
|
|
|
|
GC::Ref<Segments const> m_segments;
|
|
};
|
|
|
|
}
|