diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-06-30 00:58:40 +0300 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2022-07-01 01:00:05 +0300 |
commit | 97fe37bcc2fc65e5540351c19e095c148797e398 (patch) | |
tree | ea88bfbe91e8d1a567494a32369903c6d2289bdc /Userland/Libraries/LibJS/Runtime/GlobalObject.cpp | |
parent | e1ee33ba7c2f48363cb3b487137d25a2459c4857 (diff) | |
download | serenity-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.cpp | 2 |
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> |