Skip to content

Commit 9ad3082

Browse files
targosjasnell
authored andcommitted
intl: add deprecation warning for v8BreakIterator
Fixes: #8865 PR-URL: #8908 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 09987d2 commit 9ad3082

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

lib/internal/process.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -118,16 +118,17 @@ function setupConfig(_source) {
118118
return value;
119119
});
120120
const processConfig = process.binding('config');
121-
// Intl.v8BreakIterator() would crash w/ fatal error, so throw instead.
122-
if (processConfig.hasIntl &&
123-
processConfig.hasSmallICU &&
124-
Intl.hasOwnProperty('v8BreakIterator') &&
125-
!process.icu_data_dir) {
121+
if (typeof Intl !== 'undefined' && Intl.hasOwnProperty('v8BreakIterator')) {
122+
const oldV8BreakIterator = Intl.v8BreakIterator;
126123
const des = Object.getOwnPropertyDescriptor(Intl, 'v8BreakIterator');
127-
des.value = function v8BreakIterator() {
128-
throw new Error('v8BreakIterator: full ICU data not installed. ' +
129-
'See https://github.com/nodejs/node/wiki/Intl');
130-
};
124+
des.value = require('internal/util').deprecate(function v8BreakIterator() {
125+
if (processConfig.hasSmallICU && !process.icu_data_dir) {
126+
// Intl.v8BreakIterator() would crash w/ fatal error, so throw instead.
127+
throw new Error('v8BreakIterator: full ICU data not installed. ' +
128+
'See https://github.com/nodejs/node/wiki/Intl');
129+
}
130+
return Reflect.construct(oldV8BreakIterator, arguments);
131+
}, 'Intl.v8BreakIterator is deprecated and will be removed soon.');
131132
Object.defineProperty(Intl, 'v8BreakIterator', des);
132133
}
133134
// Don’t let icu_data_dir leak through.

test/parallel/test-intl-v8BreakIterator.js

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ if (global.Intl === undefined || Intl.v8BreakIterator === undefined) {
66
return common.skip('no Intl');
77
}
88

9+
const warning = 'Intl.v8BreakIterator is deprecated and will be removed soon.';
10+
common.expectWarning('DeprecationWarning', warning);
11+
912
try {
1013
new Intl.v8BreakIterator();
1114
// May succeed if data is available - OK

0 commit comments

Comments
 (0)