| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 5ff8ccbae5145ce6be6a04848cc6a6ad9fe65f77..a5a21c65ad94744af50f71811bee691cd8d60cdc 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -6846,6 +6846,12 @@ Local<Symbol> v8::Symbol::GetToStringTag(Isolate* isolate) {
|
| }
|
|
|
|
|
| +Local<Symbol> v8::Symbol::GetIsConcatSpreadable(Isolate* isolate) {
|
| + i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
|
| + return Utils::ToLocal(i_isolate->factory()->is_concat_spreadable_symbol());
|
| +}
|
| +
|
| +
|
| Local<Number> v8::Number::New(Isolate* isolate, double value) {
|
| i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
|
| if (std::isnan(value)) {
|
|
|