mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:02:44 +00:00 
			
		
		
		
	 4f72f6b886
			
		
	
	
		4f72f6b886
		
	
	
	
	
		
			
			FlyString is a flyweight string class that wraps a RefPtr<StringImpl> known to be unique among the set of FlyStrings. The class is very unoptimized at the moment. When to use FlyString: - When you want O(1) string comparison - When you want to deduplicate a lot of identical strings When not to use FlyString: - For strings that don't need either of the above features - For strings that are likely to be unique
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			855 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			855 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| USE_HOST_CXX = 1
 | |
| 
 | |
| PROGRAM = Generate_CSS_PropertyID_h
 | |
| 
 | |
| OBJS = \
 | |
|     Generate_CSS_PropertyID_h.o \
 | |
|     ../../../../AK/FlyString.o \
 | |
|     ../../../../AK/JsonParser.o \
 | |
|     ../../../../AK/JsonValue.o \
 | |
|     ../../../../AK/LogStream.o \
 | |
|     ../../../../AK/String.o \
 | |
|     ../../../../AK/StringBuilder.o \
 | |
|     ../../../../AK/StringImpl.o \
 | |
|     ../../../../AK/StringUtils.o \
 | |
|     ../../../../AK/StringView.o \
 | |
|     ../../../../Libraries/LibCore/IODevice.o \
 | |
|     ../../../../Libraries/LibCore/File.o \
 | |
|     ../../../../Libraries/LibCore/Object.o \
 | |
|     ../../../../Libraries/LibCore/Event.o \
 | |
|     ../../../../Libraries/LibCore/Socket.o \
 | |
|     ../../../../Libraries/LibCore/LocalSocket.o \
 | |
|     ../../../../Libraries/LibCore/Notifier.o \
 | |
|     ../../../../Libraries/LibCore/LocalServer.o \
 | |
|     ../../../../Libraries/LibCore/EventLoop.o
 | |
| 
 | |
| include ../../../../Makefile.common
 |