forked from mirrors/gecko-dev
Bug 1330006 - Work around no-unreachable error. r=till
This commit is contained in:
parent
e05532d8d8
commit
ec8b3e8c5d
1 changed files with 2 additions and 0 deletions
|
|
@ -667,11 +667,13 @@ function String_static_localeCompare(str1, str2) {
|
||||||
ThrowTypeError(JSMSG_MISSING_FUN_ARG, 0, "String.localeCompare");
|
ThrowTypeError(JSMSG_MISSING_FUN_ARG, 0, "String.localeCompare");
|
||||||
var locales = arguments.length > 2 ? arguments[2] : undefined;
|
var locales = arguments.length > 2 ? arguments[2] : undefined;
|
||||||
var options = arguments.length > 3 ? arguments[3] : undefined;
|
var options = arguments.length > 3 ? arguments[3] : undefined;
|
||||||
|
/* eslint-disable no-unreachable */
|
||||||
#if EXPOSE_INTL_API
|
#if EXPOSE_INTL_API
|
||||||
return callFunction(String_localeCompare, str1, str2, locales, options);
|
return callFunction(String_localeCompare, str1, str2, locales, options);
|
||||||
#else
|
#else
|
||||||
return callFunction(std_String_localeCompare, str1, str2, locales, options);
|
return callFunction(std_String_localeCompare, str1, str2, locales, options);
|
||||||
#endif
|
#endif
|
||||||
|
/* eslint-enable no-unreachable */
|
||||||
}
|
}
|
||||||
|
|
||||||
// ES6 draft 2014-04-27 B.2.3.3
|
// ES6 draft 2014-04-27 B.2.3.3
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue