mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:42:45 +00:00 
			
		
		
		
	 5eb1f752ab
			
		
	
	
		5eb1f752ab
		
	
	
	
	
		
			
			This changes the remaining uses of the following functions across LibJS: - String::format() => String::formatted() - dbg() => dbgln() - printf() => out(), outln() - fprintf() => warnln() I also removed the relevant 'LogStream& operator<<' overloads as they're not needed anymore.
		
			
				
	
	
		
			88 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(SOURCES
 | |
|     AST.cpp
 | |
|     Console.cpp
 | |
|     Heap/Allocator.cpp
 | |
|     Heap/Handle.cpp
 | |
|     Heap/HeapBlock.cpp
 | |
|     Heap/Heap.cpp
 | |
|     Interpreter.cpp
 | |
|     Lexer.cpp
 | |
|     MarkupGenerator.cpp
 | |
|     Parser.cpp
 | |
|     Runtime/Array.cpp
 | |
|     Runtime/ArrayBuffer.cpp
 | |
|     Runtime/ArrayBufferConstructor.cpp
 | |
|     Runtime/ArrayBufferPrototype.cpp
 | |
|     Runtime/ArrayConstructor.cpp
 | |
|     Runtime/ArrayIterator.cpp
 | |
|     Runtime/ArrayIteratorPrototype.cpp
 | |
|     Runtime/ArrayPrototype.cpp
 | |
|     Runtime/BigInt.cpp
 | |
|     Runtime/BigIntConstructor.cpp
 | |
|     Runtime/BigIntObject.cpp
 | |
|     Runtime/BigIntPrototype.cpp
 | |
|     Runtime/BooleanConstructor.cpp
 | |
|     Runtime/BooleanObject.cpp
 | |
|     Runtime/BooleanPrototype.cpp
 | |
|     Runtime/BoundFunction.cpp
 | |
|     Runtime/Cell.cpp
 | |
|     Runtime/ConsoleObject.cpp
 | |
|     Runtime/DateConstructor.cpp
 | |
|     Runtime/Date.cpp
 | |
|     Runtime/DatePrototype.cpp
 | |
|     Runtime/ErrorConstructor.cpp
 | |
|     Runtime/Error.cpp
 | |
|     Runtime/ErrorPrototype.cpp
 | |
|     Runtime/ErrorTypes.cpp
 | |
|     Runtime/Exception.cpp
 | |
|     Runtime/FunctionConstructor.cpp
 | |
|     Runtime/Function.cpp
 | |
|     Runtime/FunctionPrototype.cpp
 | |
|     Runtime/GlobalObject.cpp
 | |
|     Runtime/IndexedProperties.cpp
 | |
|     Runtime/IteratorOperations.cpp
 | |
|     Runtime/IteratorPrototype.cpp
 | |
|     Runtime/JSONObject.cpp
 | |
|     Runtime/LexicalEnvironment.cpp
 | |
|     Runtime/MarkedValueList.cpp
 | |
|     Runtime/MathObject.cpp
 | |
|     Runtime/NativeFunction.cpp
 | |
|     Runtime/NativeProperty.cpp
 | |
|     Runtime/NumberConstructor.cpp
 | |
|     Runtime/NumberObject.cpp
 | |
|     Runtime/NumberPrototype.cpp
 | |
|     Runtime/ObjectConstructor.cpp
 | |
|     Runtime/Object.cpp
 | |
|     Runtime/ObjectPrototype.cpp
 | |
|     Runtime/PrimitiveString.cpp
 | |
|     Runtime/ProxyConstructor.cpp
 | |
|     Runtime/ProxyObject.cpp
 | |
|     Runtime/Reference.cpp
 | |
|     Runtime/ReflectObject.cpp
 | |
|     Runtime/RegExpConstructor.cpp
 | |
|     Runtime/RegExpObject.cpp
 | |
|     Runtime/RegExpPrototype.cpp
 | |
|     Runtime/ScopeObject.cpp
 | |
|     Runtime/ScriptFunction.cpp
 | |
|     Runtime/Shape.cpp
 | |
|     Runtime/StringConstructor.cpp
 | |
|     Runtime/StringIterator.cpp
 | |
|     Runtime/StringIteratorPrototype.cpp
 | |
|     Runtime/StringObject.cpp
 | |
|     Runtime/StringPrototype.cpp
 | |
|     Runtime/Symbol.cpp
 | |
|     Runtime/SymbolConstructor.cpp
 | |
|     Runtime/SymbolObject.cpp
 | |
|     Runtime/SymbolPrototype.cpp
 | |
|     Runtime/TypedArray.cpp
 | |
|     Runtime/TypedArrayConstructor.cpp
 | |
|     Runtime/TypedArrayPrototype.cpp
 | |
|     Runtime/Uint8ClampedArray.cpp
 | |
|     Runtime/VM.cpp
 | |
|     Runtime/Value.cpp
 | |
|     Runtime/WithScope.cpp
 | |
|     Token.cpp
 | |
| )
 | |
| 
 | |
| serenity_lib(LibJS js)
 | |
| target_link_libraries(LibJS LibM LibCore LibCrypto LibRegex)
 |