diff options
author | Martok <martok@martoks-place.de> | 2023-06-29 23:03:12 +0200 |
---|---|---|
committer | Martok <martok@martoks-place.de> | 2023-06-29 23:03:12 +0200 |
commit | 9eb285a9fb89cfd64ca9c9cba77746af4547f0a4 (patch) | |
tree | 18e977c43d94bc8c0bdafad1a3f915e30498bae8 /js/src/vm | |
parent | bbe3b8e12f1bbd274baeadf26ea7d124b344ef2b (diff) | |
download | uxp-9eb285a9fb89cfd64ca9c9cba77746af4547f0a4.tar.gz |
Issue #2259 - Implement caseFirst option in Intl.Collator
Based-on: m-c 866473
Diffstat (limited to 'js/src/vm')
-rw-r--r-- | js/src/vm/SelfHosting.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/src/vm/SelfHosting.cpp b/js/src/vm/SelfHosting.cpp index e4695332cf..bc66d6aa1e 100644 --- a/js/src/vm/SelfHosting.cpp +++ b/js/src/vm/SelfHosting.cpp @@ -2475,6 +2475,7 @@ static const JSFunctionSpec intrinsic_functions[] = { JS_FN("intl_FormatNumber", intl_FormatNumber, 2,0), JS_FN("intl_GetCalendarInfo", intl_GetCalendarInfo, 1,0), JS_FN("intl_ComputeDisplayNames", intl_ComputeDisplayNames, 3,0), + JS_FN("intl_isUpperCaseFirst", intl_isUpperCaseFirst, 1,0), JS_FN("intl_IsValidTimeZoneName", intl_IsValidTimeZoneName, 1,0), JS_FN("intl_NumberFormat", intl_NumberFormat, 2,0), JS_FN("intl_NumberFormat_availableLocales", intl_NumberFormat_availableLocales, 0,0), |