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/Forward.h | |
parent | e1ee33ba7c2f48363cb3b487137d25a2459c4857 (diff) | |
download | serenity-97fe37bcc2fc65e5540351c19e095c148797e398.zip |
LibJS: Start implementing the stage 3 Intl.DurationFormat proposal
Diffstat (limited to 'Userland/Libraries/LibJS/Forward.h')
-rw-r--r-- | Userland/Libraries/LibJS/Forward.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Forward.h b/Userland/Libraries/LibJS/Forward.h index dbc3641854..ac18abc83f 100644 --- a/Userland/Libraries/LibJS/Forward.h +++ b/Userland/Libraries/LibJS/Forward.h @@ -73,6 +73,7 @@ __JS_ENUMERATE(Collator, collator, CollatorPrototype, CollatorConstructor) \ __JS_ENUMERATE(DateTimeFormat, date_time_format, DateTimeFormatPrototype, DateTimeFormatConstructor) \ __JS_ENUMERATE(DisplayNames, display_names, DisplayNamesPrototype, DisplayNamesConstructor) \ + __JS_ENUMERATE(DurationFormat, duration_format, DurationFormatPrototype, DurationFormatConstructor) \ __JS_ENUMERATE(ListFormat, list_format, ListFormatPrototype, ListFormatConstructor) \ __JS_ENUMERATE(Locale, locale, LocalePrototype, LocaleConstructor) \ __JS_ENUMERATE(NumberFormat, number_format, NumberFormatPrototype, NumberFormatConstructor) \ |