Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(341)

Unified Diff: src/runtime/runtime-i18n.cc

Issue 2717613005: [intl] Fix NumberFormat options handling spec compliance issues (Closed)
Patch Set: Run the local test262 tests Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/runtime/runtime.h ('k') | test/test262/test262.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime/runtime-i18n.cc
diff --git a/src/runtime/runtime-i18n.cc b/src/runtime/runtime-i18n.cc
index 0b45381914641a824e36e99eaa0d315bf96252aa..df60891c2527ad9b8c83c0654ef1f3070ce33794 100644
--- a/src/runtime/runtime-i18n.cc
+++ b/src/runtime/runtime-i18n.cc
@@ -551,6 +551,25 @@ RUNTIME_FUNCTION(Runtime_InternalNumberFormat) {
result.length())));
}
+RUNTIME_FUNCTION(Runtime_CurrencyDigits) {
+ DCHECK_EQ(1, args.length());
+
+ CONVERT_ARG_HANDLE_CHECKED(String, currency, 0);
+
+ v8::String::Utf8Value currency_string(v8::Utils::ToLocal(currency));
+ icu::UnicodeString currency_icu =
+ icu::UnicodeString::fromUTF8(*currency_string);
+
+ {
adamk 2017/03/16 22:47:49 Nit: no need for this block, since its ending brac
Dan Ehrenberg 2017/03/17 09:36:01 Fixed
+ DisallowHeapAllocation no_gc;
+ UErrorCode status = U_ZERO_ERROR;
+ uint32_t fraction_digits = ucurr_getDefaultFractionDigits(
+ currency_icu.getTerminatedBuffer(), &status);
+ // For missing currency codes, default to the most common, 2
+ if (!U_SUCCESS(status)) fraction_digits = 2;
+ return Smi::FromInt(fraction_digits);
+ }
+}
RUNTIME_FUNCTION(Runtime_CreateCollator) {
HandleScope scope(isolate);
« no previous file with comments | « src/runtime/runtime.h ('k') | test/test262/test262.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698