ladybird/Libraries/LibJS/Bytecode/StringTable.cpp
Timothy Flynn 70db474cf0 LibJS+LibWeb: Port interned bytecode strings to UTF-16
This was almost a no-op, except we intern JS exception messages. So the
bulk of this patch is porting exception messages to UTF-16.
2025-08-14 10:27:08 +02:00

29 lines
600 B
C++

/*
* Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibJS/Bytecode/StringTable.h>
namespace JS::Bytecode {
StringTableIndex StringTable::insert(Utf16String string)
{
m_strings.append(move(string));
return { static_cast<u32>(m_strings.size() - 1) };
}
Utf16String const& StringTable::get(StringTableIndex index) const
{
return m_strings[index.value];
}
void StringTable::dump() const
{
outln("String Table:");
for (size_t i = 0; i < m_strings.size(); i++)
outln("{}: {}", i, m_strings[i]);
}
}