mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	This means that rather than this:
```
AK_TYPEDEF_DISTINCT_NUMERIC_GENERAL(u64, true, true, false, false,
    false, true, FunctionAddress);
```
We now have this:
```
AK_TYPEDEF_DISTINCT_NUMERIC_GENERAL(u64, FunctionAddress, Arithmetic,
    Comparison, Increment);
```
Which is a lot more readable. :^)
Co-authored-by: Ali Mohammad Pur <mpfard@serenityos.org>
		
	
			
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			701 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			701 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <AK/DistinctNumeric.h>
 | 
						|
#include <AK/FlyString.h>
 | 
						|
#include <AK/Vector.h>
 | 
						|
 | 
						|
namespace JS::Bytecode {
 | 
						|
 | 
						|
AK_TYPEDEF_DISTINCT_NUMERIC_GENERAL(size_t, IdentifierTableIndex, Comparison);
 | 
						|
 | 
						|
class IdentifierTable {
 | 
						|
    AK_MAKE_NONMOVABLE(IdentifierTable);
 | 
						|
    AK_MAKE_NONCOPYABLE(IdentifierTable);
 | 
						|
 | 
						|
public:
 | 
						|
    IdentifierTable() = default;
 | 
						|
 | 
						|
    IdentifierTableIndex insert(FlyString);
 | 
						|
    FlyString const& get(IdentifierTableIndex) const;
 | 
						|
    void dump() const;
 | 
						|
    bool is_empty() const { return m_identifiers.is_empty(); }
 | 
						|
 | 
						|
private:
 | 
						|
    Vector<FlyString> m_identifiers;
 | 
						|
};
 | 
						|
 | 
						|
}
 |