[Intl] Clean up - remove unnecessary include
Bug: v8:5751 Cq-Include-Trybots: luci.v8.try:v8_linux_noi18n_rel_ng Change-Id: I2642a8a693f9803949bc279892dffdcac0b6144c Reviewed-on: https://chromium-review.googlesource.com/1212465 Commit-Queue: Frank Tang <ftang@chromium.org> Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Cr-Commit-Position: refs/heads/master@{#55737}
This commit is contained in:
parent
c830799d68
commit
67d0f65fbe
@ -23,32 +23,21 @@
|
||||
#include "src/objects/js-collator-inl.h"
|
||||
#include "src/objects/js-date-time-format-inl.h"
|
||||
#include "src/objects/js-number-format-inl.h"
|
||||
#include "src/objects/managed.h"
|
||||
#include "src/objects/string.h"
|
||||
#include "src/property-descriptor.h"
|
||||
#include "unicode/brkiter.h"
|
||||
#include "unicode/bytestream.h"
|
||||
#include "unicode/calendar.h"
|
||||
#include "unicode/coll.h"
|
||||
#include "unicode/curramt.h"
|
||||
#include "unicode/dcfmtsym.h"
|
||||
#include "unicode/decimfmt.h"
|
||||
#include "unicode/dtfmtsym.h"
|
||||
#include "unicode/dtptngen.h"
|
||||
#include "unicode/gregocal.h"
|
||||
#include "unicode/locid.h"
|
||||
#include "unicode/numfmt.h"
|
||||
#include "unicode/numsys.h"
|
||||
#include "unicode/plurrule.h"
|
||||
#include "unicode/rbbi.h"
|
||||
#include "unicode/regex.h"
|
||||
#include "unicode/smpdtfmt.h"
|
||||
#include "unicode/timezone.h"
|
||||
#include "unicode/uchar.h"
|
||||
#include "unicode/ucol.h"
|
||||
#include "unicode/ucurr.h"
|
||||
#include "unicode/unum.h"
|
||||
#include "unicode/upluralrules.h"
|
||||
#include "unicode/ures.h"
|
||||
#include "unicode/uvernum.h"
|
||||
#include "unicode/uversion.h"
|
||||
@ -1338,10 +1327,11 @@ MaybeHandle<String> Intl::NumberToLocaleString(Isolate* isolate,
|
||||
return JSNumberFormat::FormatNumber(isolate, number_format, number);
|
||||
}
|
||||
|
||||
namespace {
|
||||
|
||||
// ecma402/#sec-defaultnumberoption
|
||||
Maybe<int> Intl::DefaultNumberOption(Isolate* isolate, Handle<Object> value,
|
||||
int min, int max, int fallback,
|
||||
Handle<String> property) {
|
||||
Maybe<int> DefaultNumberOption(Isolate* isolate, Handle<Object> value, int min,
|
||||
int max, int fallback, Handle<String> property) {
|
||||
// 2. Else, return fallback.
|
||||
if (value->IsUndefined()) return Just(fallback);
|
||||
|
||||
@ -1371,7 +1361,7 @@ Maybe<int> Intl::DefaultNumberOption(Isolate* isolate, Handle<Object> value,
|
||||
}
|
||||
|
||||
// ecma402/#sec-getnumberoption
|
||||
Maybe<int> Intl::GetNumberOption(Isolate* isolate, Handle<JSReceiver> options,
|
||||
Maybe<int> GetNumberOption(Isolate* isolate, Handle<JSReceiver> options,
|
||||
Handle<String> property, int min, int max,
|
||||
int fallback) {
|
||||
// 1. Let value be ? Get(options, property).
|
||||
@ -1384,7 +1374,7 @@ Maybe<int> Intl::GetNumberOption(Isolate* isolate, Handle<JSReceiver> options,
|
||||
return DefaultNumberOption(isolate, value, min, max, fallback, property);
|
||||
}
|
||||
|
||||
Maybe<int> Intl::GetNumberOption(Isolate* isolate, Handle<JSReceiver> options,
|
||||
Maybe<int> GetNumberOption(Isolate* isolate, Handle<JSReceiver> options,
|
||||
const char* property, int min, int max,
|
||||
int fallback) {
|
||||
Handle<String> property_str =
|
||||
@ -1392,6 +1382,8 @@ Maybe<int> Intl::GetNumberOption(Isolate* isolate, Handle<JSReceiver> options,
|
||||
return GetNumberOption(isolate, options, property_str, min, max, fallback);
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
Maybe<bool> Intl::SetNumberFormatDigitOptions(Isolate* isolate,
|
||||
icu::DecimalFormat* number_format,
|
||||
Handle<JSReceiver> options,
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include "unicode/uversion.h"
|
||||
|
||||
namespace U_ICU_NAMESPACE {
|
||||
class BreakIterator;
|
||||
class DecimalFormat;
|
||||
class SimpleDateFormat;
|
||||
class UnicodeString;
|
||||
@ -240,19 +239,6 @@ class Intl {
|
||||
Isolate* isolate, Handle<Object> num, Handle<Object> locales,
|
||||
Handle<Object> options);
|
||||
|
||||
// ecma402/#sec-defaultnumberoption
|
||||
V8_WARN_UNUSED_RESULT static Maybe<int> DefaultNumberOption(
|
||||
Isolate* isolate, Handle<Object> value, int min, int max, int fallback,
|
||||
Handle<String> property);
|
||||
|
||||
// ecma402/#sec-getnumberoption
|
||||
V8_WARN_UNUSED_RESULT static Maybe<int> GetNumberOption(
|
||||
Isolate* isolate, Handle<JSReceiver> options, Handle<String> property,
|
||||
int min, int max, int fallback);
|
||||
V8_WARN_UNUSED_RESULT static Maybe<int> GetNumberOption(
|
||||
Isolate* isolate, Handle<JSReceiver> options, const char* property,
|
||||
int min, int max, int fallback);
|
||||
|
||||
// ecma402/#sec-setnfdigitoptions
|
||||
V8_WARN_UNUSED_RESULT static Maybe<bool> SetNumberFormatDigitOptions(
|
||||
Isolate* isolate, icu::DecimalFormat* number_format,
|
||||
|
@ -16,6 +16,10 @@
|
||||
// Has to be the last include (doesn't have include guards):
|
||||
#include "src/objects/object-macros.h"
|
||||
|
||||
namespace U_ICU_NAMESPACE {
|
||||
class BreakIterator;
|
||||
} // namespace U_ICU_NAMESPACE
|
||||
|
||||
namespace v8 {
|
||||
namespace internal {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user