mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 05:09:12 +00:00
AK: Rename Utf8CodepointIterator => Utf8CodePointIterator
This commit is contained in:
parent
628c7f094f
commit
407d6cd9e4
Notes:
sideshowbarker
2024-07-18 17:03:34 +09:00
Author: https://github.com/awesomekling
Commit: 407d6cd9e4
8 changed files with 37 additions and 37 deletions
|
@ -20,14 +20,14 @@ public:
|
|||
explicit StringIterator(Object& prototype, String string);
|
||||
virtual ~StringIterator() override;
|
||||
|
||||
Utf8CodepointIterator& iterator() { return m_iterator; }
|
||||
Utf8CodePointIterator& iterator() { return m_iterator; }
|
||||
bool done() const { return m_done; }
|
||||
|
||||
private:
|
||||
friend class StringIteratorPrototype;
|
||||
|
||||
String m_string;
|
||||
Utf8CodepointIterator m_iterator;
|
||||
Utf8CodePointIterator m_iterator;
|
||||
bool m_done { false };
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue