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

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: working with icu-case-mapping.js manually compiled in; gyp change not picking it up Created 4 years, 8 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
Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index f887418a2c472b0b7c4c4b0933184ff53203c80d..ee63b681889af95353ef619a3363b1e6d8bb74c4 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_NEG_IMPLICATION(es_staging, icu_case_mapping)
jungshik at Google 2016/04/29 06:55:32 I noticed that https://codereview.chromium.org/15
+#endif
+
DEFINE_BOOL(es_staging, false,
"enable test-worthy harmony features (for internal use only)")
DEFINE_BOOL(harmony, false, "enable all completed harmony features")

Powered by Google App Engine
This is Rietveld 408576698