1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:07:35 +00:00

LibJS: Rename Utf16String::to_utf8 to to_deprecated_string

This commit is contained in:
Timothy Flynn 2023-01-13 12:13:07 -05:00 committed by Linus Groh
parent ca655f5e7d
commit 4eb5eb2080
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ public:
Utf16View substring_view(size_t code_unit_offset, size_t code_unit_length) const;
Utf16View substring_view(size_t code_unit_offset) const;
ThrowCompletionOr<DeprecatedString> to_utf8(VM&) const;
ThrowCompletionOr<DeprecatedString> to_deprecated_string(VM&) const;
u16 code_unit_at(size_t index) const;
size_t length_in_code_units() const;