-
-
Notifications
You must be signed in to change notification settings - Fork 406
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Merged by Bors] - Implement prototype of Intl
built-in
#1622
Conversation
Signed-off-by: hle0 <91701075+hle0@users.noreply.github.com>
Signed-off-by: hle0 <91701075+hle0@users.noreply.github.com>
Co-authored-by: jedel1043 <jedel0124@gmail.com>
Ah, you have to |
Signed-off-by: hle0 <91701075+hle0@users.noreply.github.com>
Signed-off-by: hle0 <91701075+hle0@users.noreply.github.com>
Signed-off-by: hle0 <91701075+hle0@users.noreply.github.com>
Signed-off-by: hle0 <91701075+hle0@users.noreply.github.com>
Test262 conformance changes:
Fixed tests (74):
|
Co-authored-by: jedel1043 <jedel0124@gmail.com>
Co-authored-by: jedel1043 <jedel0124@gmail.com>
Signed-off-by: hle0 <91701075+hle0@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work! This should be a pretty good starting point to begin integrating icu4x
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, just needs a rebase.
Codecov Report
@@ Coverage Diff @@
## main #1622 +/- ##
==========================================
+ Coverage 44.40% 50.91% +6.51%
==========================================
Files 203 199 -4
Lines 20270 17707 -2563
==========================================
+ Hits 9000 9016 +16
+ Misses 11270 8691 -2579
Continue to review full report at Codecov.
|
bors r+ |
<!--- Thank you for contributing to Boa! Please fill out the template below, and remove or add any information as you feel neccesary. ---> This pull request is related to #1180. It changes the following: - Creates the `Intl` global - Adds the `Intl.getCanonicalLocales` method At the moment it does not actually use ICU4X behind the scenes; `Intl.getCanonicalLocales` simply acts as if all the locales passed are canonical locales. This will not be the case in the final PR. Co-authored-by: RageKnify <RageKnify@gmail.com>
Build failed: |
bors retry |
<!--- Thank you for contributing to Boa! Please fill out the template below, and remove or add any information as you feel neccesary. ---> This pull request is related to #1180. It changes the following: - Creates the `Intl` global - Adds the `Intl.getCanonicalLocales` method At the moment it does not actually use ICU4X behind the scenes; `Intl.getCanonicalLocales` simply acts as if all the locales passed are canonical locales. This will not be the case in the final PR. Co-authored-by: RageKnify <RageKnify@gmail.com>
Pull request successfully merged into main. Build succeeded: |
Intl
built-in Intl
built-in
This pull request is related to #1180.
It changes the following:
Intl
globalIntl.getCanonicalLocales
methodAt the moment it does not actually use ICU4X behind the scenes;
Intl.getCanonicalLocales
simply acts as if all the locales passed are canonical locales. This will not be the case in the final PR.