mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:17:44 +00:00
LibJS: Implement a nearly empty Intl.DateTimeFormat object
This adds plumbing for the Intl.DateTimeFormat object, constructor, and prototype. Note that unlike other Intl objects, the Intl.DateTimeFormat object has a LibUnicode structure as a base. This is to prevent wild amounts of code duplication between LibUnicode, Intl.DateTimeFormat, and other not-yet-defined Intl structures, because there's 12 fields shared between them.
This commit is contained in:
parent
6dbdfb6ba1
commit
75b2a09a2f
12 changed files with 329 additions and 4 deletions
|
@ -86,6 +86,9 @@ set(SOURCES
|
|||
Runtime/GlobalObject.cpp
|
||||
Runtime/IndexedProperties.cpp
|
||||
Runtime/Intl/AbstractOperations.cpp
|
||||
Runtime/Intl/DateTimeFormat.cpp
|
||||
Runtime/Intl/DateTimeFormatConstructor.cpp
|
||||
Runtime/Intl/DateTimeFormatPrototype.cpp
|
||||
Runtime/Intl/DisplayNames.cpp
|
||||
Runtime/Intl/DisplayNamesConstructor.cpp
|
||||
Runtime/Intl/DisplayNamesPrototype.cpp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue