From f1b6873023b5d37de23150606d6ac0f510da60a2 Mon Sep 17 00:00:00 2001 From: Frank Tang Date: Fri, 3 Dec 2021 12:13:08 -0800 Subject: [PATCH] [intl] Ship Intl Locale Info DD: https://docs.google.com/document/d/1OwEsvs8VQwvR-ug01xLyIwpgcvUfaP24u9owc7aBKJ4/ Status: https://www.chromestatus.com/feature/5566859262820352 R2T: https://groups.google.com/a/chromium.org/g/blink-dev/c/5spmAncbooE/m/NdwZGjLpAgAJ I2S: https://groups.google.com/a/chromium.org/g/blink-dev/c/4ZMt5ukQNRs/m/0flHnuaBBgAJ API Owners LGTMs: chrishtr@chromium.org, miketaylr@chromium.org, tkent@chromium.org Bug: v8:11638 Change-Id: Ief40b7d545a268723e5fbe654cdc86dcb9523300 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3315223 Reviewed-by: Shu-yu Guo Commit-Queue: Frank Tang Cr-Commit-Position: refs/heads/main@{#78378} --- src/flags/flag-definitions.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/flags/flag-definitions.h b/src/flags/flag-definitions.h index 031e3b292e..c986418d63 100644 --- a/src/flags/flag-definitions.h +++ b/src/flags/flag-definitions.h @@ -319,8 +319,7 @@ DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony features") #define HARMONY_STAGED(V) \ HARMONY_STAGED_BASE(V) \ V(harmony_intl_best_fit_matcher, "Intl BestFitMatcher") \ - V(harmony_intl_enumeration, "Intl Enumberation API") \ - V(harmony_intl_locale_info, "Intl locale info") + V(harmony_intl_enumeration, "Intl Enumeration API") #else #define HARMONY_STAGED(V) HARMONY_STAGED_BASE(V) #endif @@ -337,7 +336,9 @@ DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony features") V(harmony_array_find_last, "harmony array find last helpers") #ifdef V8_INTL_SUPPORT -#define HARMONY_SHIPPING(V) HARMONY_SHIPPING_BASE(V) +#define HARMONY_SHIPPING(V) \ + HARMONY_SHIPPING_BASE(V) \ + V(harmony_intl_locale_info, "Intl locale info") #else #define HARMONY_SHIPPING(V) HARMONY_SHIPPING_BASE(V) #endif