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

Unified Diff: src/flag-definitions.h

Issue 1812673005: Use ICU case conversion/transliterator for case conversion behind a flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Dan's comment addressed Created 4 years, 7 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/bootstrapper.cc ('k') | src/js/i18n.js » ('j') | src/js/i18n.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index 641423bb4e84de62d559aa2d105dcd8302103401..c6742a841707907c0acac84a58ed4e32c52b1e5e 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -178,6 +178,12 @@ DEFINE_BOOL(experimental_extras, false,
// Flags for language modes and experimental language features.
DEFINE_BOOL(use_strict, false, "enforce strict mode")
+#ifdef V8_I18N_SUPPORT
+DEFINE_BOOL(icu_case_mapping, false,
+ "case mapping with ICU rather than Unibrow")
+DEFINE_IMPLICATION(es_staging, icu_case_mapping)
Yang 2016/05/10 10:00:46 Can we instead put this into the HARMONY_STAGED li
+#endif
+
DEFINE_BOOL(es_staging, false,
"enable test-worthy harmony features (for internal use only)")
DEFINE_BOOL(harmony, false, "enable all completed harmony features")
« no previous file with comments | « src/bootstrapper.cc ('k') | src/js/i18n.js » ('j') | src/js/i18n.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698