diff options
author | Linus Groh <mail@linusgroh.de> | 2021-07-14 21:01:12 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-07-14 23:50:03 +0100 |
commit | a2f1d79765970c5ddf18914a4cc6913673b1f1b7 (patch) | |
tree | 1df3f3b09b939c299206f983e9eaade772586c9b /Userland/Libraries/LibJS/CMakeLists.txt | |
parent | 48b66c7a68000559f4b3657d499efd9460ed8740 (diff) | |
download | serenity-a2f1d79765970c5ddf18914a4cc6913673b1f1b7.zip |
LibJS: Start implementing Temporal.Calendar
Just like the previous Temporal.{Instant,TimeZone} commits, this patch
adds the Calendar object itself, its constructor and prototype
(currently empty), and two required abstract operations.
Diffstat (limited to 'Userland/Libraries/LibJS/CMakeLists.txt')
-rw-r--r-- | Userland/Libraries/LibJS/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/CMakeLists.txt b/Userland/Libraries/LibJS/CMakeLists.txt index 921ce02bac..a289b85195 100644 --- a/Userland/Libraries/LibJS/CMakeLists.txt +++ b/Userland/Libraries/LibJS/CMakeLists.txt @@ -123,6 +123,8 @@ set(SOURCES Runtime/SymbolPrototype.cpp Runtime/Temporal/AbstractOperations.cpp Runtime/Temporal/Calendar.cpp + Runtime/Temporal/CalendarConstructor.cpp + Runtime/Temporal/CalendarPrototype.cpp Runtime/Temporal/Instant.cpp Runtime/Temporal/InstantConstructor.cpp Runtime/Temporal/InstantPrototype.cpp |