mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	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.
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			600 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			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]);
 | 
						|
}
 | 
						|
 | 
						|
}
 |