Browse Source

src: default --icu_case_mapping on as a v8 option

* toLocaleUpperCase() and toLocaleLowerCase() do not function properly
without this flag.
* basic test case. The test case would fail if `--no_icu_case_mapping`
was set.

Fixes: https://github.com/nodejs/node/issues/9445
PR-URL: https://github.com/nodejs/node/pull/9454
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
v6
Steven R. Loomis 8 years ago
parent
commit
1a55e9a567
No known key found for this signature in database GPG Key ID: 3932080F4FB419E3
  1. 8
      src/node.cc
  2. 5
      test/parallel/test-intl.js

8
src/node.cc

@ -4191,6 +4191,14 @@ void Init(int* argc,
DispatchDebugMessagesAsyncCallback)); DispatchDebugMessagesAsyncCallback));
uv_unref(reinterpret_cast<uv_handle_t*>(&dispatch_debug_messages_async)); uv_unref(reinterpret_cast<uv_handle_t*>(&dispatch_debug_messages_async));
#if defined(NODE_HAVE_I18N_SUPPORT)
// Set the ICU casing flag early
// so the user can disable a flag --foo at run-time by passing
// --no_foo from the command line.
const char icu_case_mapping[] = "--icu_case_mapping";
V8::SetFlagsFromString(icu_case_mapping, sizeof(icu_case_mapping) - 1);
#endif
#if defined(NODE_V8_OPTIONS) #if defined(NODE_V8_OPTIONS)
// Should come before the call to V8::SetFlagsFromCommandLine() // Should come before the call to V8::SetFlagsFromCommandLine()
// so the user can disable a flag --foo at run-time by passing // so the user can disable a flag --foo at run-time by passing

5
test/parallel/test-intl.js

@ -50,6 +50,11 @@ if (!common.hasIntl) {
return; return;
} }
// Check casing
{
assert.strictEqual('I'.toLocaleLowerCase('tr'), 'ı');
}
// Check with toLocaleString // Check with toLocaleString
{ {
const localeString = dtf.format(date0); const localeString = dtf.format(date0);

Loading…
Cancel
Save