mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-24 18:28:57 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
parent
950e819ee7
commit
93712b24bf
Notes:
github-actions[bot]
2024-11-10 11:51:52 +00:00
Author: https://github.com/trflynn89
Commit: 93712b24bf
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2256
Reviewed-by: https://github.com/sideshowbarker
4547 changed files with 104 additions and 113 deletions
42
Libraries/LibJS/Runtime/Intl/SegmentIterator.h
Normal file
42
Libraries/LibJS/Runtime/Intl/SegmentIterator.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* 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);
|
||||
JS_DECLARE_ALLOCATOR(SegmentIterator);
|
||||
|
||||
public:
|
||||
static NonnullGCPtr<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]]
|
||||
|
||||
NonnullGCPtr<Segments const> m_segments;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue