summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2022-06-30 00:58:40 +0300
committerIdan Horowitz <idan.horowitz@gmail.com>2022-07-01 01:00:05 +0300
commit97fe37bcc2fc65e5540351c19e095c148797e398 (patch)
treeea88bfbe91e8d1a567494a32369903c6d2289bdc /Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
parente1ee33ba7c2f48363cb3b487137d25a2459c4857 (diff)
downloadserenity-97fe37bcc2fc65e5540351c19e095c148797e398.zip
LibJS: Start implementing the stage 3 Intl.DurationFormat proposal
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/GlobalObject.cpp')
-rw-r--r--Userland/Libraries/LibJS/Runtime/GlobalObject.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp b/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
index cb49d5ed39..d287973d61 100644
--- a/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
+++ b/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
@@ -57,6 +57,8 @@
#include <LibJS/Runtime/Intl/DateTimeFormatPrototype.h>
#include <LibJS/Runtime/Intl/DisplayNamesConstructor.h>
#include <LibJS/Runtime/Intl/DisplayNamesPrototype.h>
+#include <LibJS/Runtime/Intl/DurationFormatConstructor.h>
+#include <LibJS/Runtime/Intl/DurationFormatPrototype.h>
#include <LibJS/Runtime/Intl/Intl.h>
#include <LibJS/Runtime/Intl/ListFormatConstructor.h>
#include <LibJS/Runtime/Intl/ListFormatPrototype.h>