mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	DeprecatedFlyString relies heavily on DeprecatedString's StringImpl, so let's rename it to A) match the name of DeprecatedString, B) write a new FlyString class that is tied to String.
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			768 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			768 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include <LibJS/Bytecode/IdentifierTable.h>
 | 
						|
 | 
						|
namespace JS::Bytecode {
 | 
						|
 | 
						|
IdentifierTableIndex IdentifierTable::insert(DeprecatedFlyString string)
 | 
						|
{
 | 
						|
    for (size_t i = 0; i < m_identifiers.size(); i++) {
 | 
						|
        if (m_identifiers[i] == string)
 | 
						|
            return i;
 | 
						|
    }
 | 
						|
    m_identifiers.append(move(string));
 | 
						|
    return m_identifiers.size() - 1;
 | 
						|
}
 | 
						|
 | 
						|
DeprecatedFlyString const& IdentifierTable::get(IdentifierTableIndex index) const
 | 
						|
{
 | 
						|
    return m_identifiers[index.value()];
 | 
						|
}
 | 
						|
 | 
						|
void IdentifierTable::dump() const
 | 
						|
{
 | 
						|
    outln("Identifier Table:");
 | 
						|
    for (size_t i = 0; i < m_identifiers.size(); i++)
 | 
						|
        outln("{}: {}", i, m_identifiers[i]);
 | 
						|
}
 | 
						|
 | 
						|
}
 |