summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2021-07-10 22:39:42 -0400
committerLinus Groh <mail@linusgroh.de>2021-07-14 20:44:42 +0100
commitdf75c35d5ba62b99a8e2544a734e22bc4f81a394 (patch)
tree2e30965012efff8a8bb4dfbfea88026ac12bd34f /Userland/Libraries
parentfa7a6fbeddf5ecfe43e796f0b038b0be51241389 (diff)
downloadserenity-df75c35d5ba62b99a8e2544a734e22bc4f81a394.zip
LibJS: Alphabetically sort LibJS's CMakeLists.txt
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibJS/CMakeLists.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/Userland/Libraries/LibJS/CMakeLists.txt b/Userland/Libraries/LibJS/CMakeLists.txt
index 952839753f..286ea7f7b6 100644
--- a/Userland/Libraries/LibJS/CMakeLists.txt
+++ b/Userland/Libraries/LibJS/CMakeLists.txt
@@ -13,11 +13,11 @@ set(SOURCES
Bytecode/Pass/UnifySameBlocks.cpp
Bytecode/StringTable.cpp
Console.cpp
- Heap/CellAllocator.cpp
Heap/BlockAllocator.cpp
+ Heap/CellAllocator.cpp
Heap/Handle.cpp
- Heap/HeapBlock.cpp
Heap/Heap.cpp
+ Heap/HeapBlock.cpp
Interpreter.cpp
Lexer.cpp
MarkupGenerator.cpp
@@ -47,13 +47,13 @@ set(SOURCES
Runtime/DataView.cpp
Runtime/DataViewConstructor.cpp
Runtime/DataViewPrototype.cpp
- Runtime/DateConstructor.cpp
Runtime/Date.cpp
+ Runtime/DateConstructor.cpp
Runtime/DatePrototype.cpp
Runtime/DeclarativeEnvironment.cpp
Runtime/Environment.cpp
- Runtime/ErrorConstructor.cpp
Runtime/Error.cpp
+ Runtime/ErrorConstructor.cpp
Runtime/ErrorPrototype.cpp
Runtime/ErrorTypes.cpp
Runtime/Exception.cpp
@@ -89,6 +89,7 @@ set(SOURCES
Runtime/ObjectConstructor.cpp
Runtime/ObjectEnvironment.cpp
Runtime/ObjectPrototype.cpp
+ Runtime/OrdinaryFunctionObject.cpp
Runtime/PrimitiveString.cpp
Runtime/Promise.cpp
Runtime/PromiseConstructor.cpp
@@ -104,7 +105,6 @@ set(SOURCES
Runtime/RegExpConstructor.cpp
Runtime/RegExpObject.cpp
Runtime/RegExpPrototype.cpp
- Runtime/OrdinaryFunctionObject.cpp
Runtime/Set.cpp
Runtime/SetConstructor.cpp
Runtime/SetIterator.cpp
@@ -136,8 +136,8 @@ set(SOURCES
Runtime/TypedArray.cpp
Runtime/TypedArrayConstructor.cpp
Runtime/TypedArrayPrototype.cpp
- Runtime/VM.cpp
Runtime/Value.cpp
+ Runtime/VM.cpp
Runtime/WeakMap.cpp
Runtime/WeakMapConstructor.cpp
Runtime/WeakMapPrototype.cpp