mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
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
36 lines
948 B
C++
36 lines
948 B
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 Segments final : public Object {
|
|
JS_OBJECT(Segments, Object);
|
|
GC_DECLARE_ALLOCATOR(Segments);
|
|
|
|
public:
|
|
static GC::Ref<Segments> create(Realm&, Unicode::Segmenter const&, Utf16String);
|
|
|
|
virtual ~Segments() override = default;
|
|
|
|
Unicode::Segmenter& segments_segmenter() const { return *m_segments_segmenter; }
|
|
|
|
Utf16View segments_string() const { return m_segments_string.view(); }
|
|
|
|
private:
|
|
Segments(Realm&, Unicode::Segmenter const&, Utf16String);
|
|
|
|
NonnullOwnPtr<Unicode::Segmenter> m_segments_segmenter; // [[SegmentsSegmenter]]
|
|
Utf16String m_segments_string; // [[SegmentsString]]
|
|
};
|
|
|
|
}
|