1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:47:35 +00:00
serenity/Userland/Libraries/LibJS/Tests/builtins/Intl/Locale
Timothy Flynn d7825f3680 LibJS: Implement most Intl.Locale.Prototype.<<keyword>> properties
The keyword accessors all have the same function body in the spec,
except for the Intl.Locale method they invoke. This generates those
properties in the same manner as RegExp.prototype.

    Intl.Locale.prototype.calendar
    Intl.Locale.prototype.caseFirst
    Intl.Locale.prototype.collation
    Intl.Locale.prototype.hourCycle
    Intl.Locale.prototype.numberingSystem

The exception is Intl.Locale.prototype.numeric, which will be defined
separately because it is a boolean value.
2021-09-02 17:56:42 +01:00
..
Locale.@@toStringTag.js LibJS: Implement a nearly empty Intl.Locale object 2021-09-02 17:56:42 +01:00
Locale.js LibJS: Implement the Intl.Locale constructor 2021-09-02 17:56:42 +01:00
Locale.prototype.baseName.js LibJS: Implement Intl.Locale.prototype.baseName 2021-09-02 17:56:42 +01:00
Locale.prototype.calendar.js LibJS: Implement most Intl.Locale.Prototype.<<keyword>> properties 2021-09-02 17:56:42 +01:00
Locale.prototype.caseFirst.js LibJS: Implement most Intl.Locale.Prototype.<<keyword>> properties 2021-09-02 17:56:42 +01:00
Locale.prototype.collation.js LibJS: Implement most Intl.Locale.Prototype.<<keyword>> properties 2021-09-02 17:56:42 +01:00
Locale.prototype.hourCycle.js LibJS: Implement most Intl.Locale.Prototype.<<keyword>> properties 2021-09-02 17:56:42 +01:00
Locale.prototype.numberingSystem.js LibJS: Implement most Intl.Locale.Prototype.<<keyword>> properties 2021-09-02 17:56:42 +01:00
Locale.prototype.toString.js LibJS: Add test cases for Intl.Locale.prototype.toString 2021-09-02 17:56:42 +01:00