Skip to content

Commit d431e5a

Browse files
committed
deps: provide v8 backwards compatibility from upstream
Fix nwjs/nw.js#6869
1 parent ef46730 commit d431e5a

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

include/v8.h

+3
Original file line numberDiff line numberDiff line change
@@ -2987,6 +2987,8 @@ class V8_EXPORT String : public Name {
29872987
*/
29882988
class V8_EXPORT Utf8Value {
29892989
public:
2990+
V8_DEPRECATED("Use Isolate version",
2991+
explicit Utf8Value(Local<v8::Value> obj));
29902992
Utf8Value(Isolate* isolate, Local<v8::Value> obj);
29912993
~Utf8Value();
29922994
char* operator*() { return str_; }
@@ -3010,6 +3012,7 @@ class V8_EXPORT String : public Name {
30103012
*/
30113013
class V8_EXPORT Value {
30123014
public:
3015+
V8_DEPRECATED("Use Isolate version", explicit Value(Local<v8::Value> obj));
30133016
Value(Isolate* isolate, Local<v8::Value> obj);
30143017
~Value();
30153018
uint16_t* operator*() { return str_; }

src/api.cc

+7-1
Original file line numberDiff line numberDiff line change
@@ -3933,7 +3933,6 @@ void v8::RegExp::CheckCast(v8::Value* that) {
39333933
"Could not convert to regular expression");
39343934
}
39353935

3936-
39373936
Maybe<bool> Value::BooleanValue(Local<Context> context) const {
39383937
i::Isolate* isolate = reinterpret_cast<i::Isolate*>(context->GetIsolate());
39393938
return Just(Utils::OpenHandle(this)->BooleanValue(isolate));
@@ -5629,6 +5628,7 @@ static bool RecursivelySerializeToUtf8(i::String* current,
56295628
return true;
56305629
}
56315630

5631+
56325632
int String::WriteUtf8(Isolate* v8_isolate, char* buffer, int capacity,
56335633
int* nchars_ref, int options) const {
56345634
i::Handle<i::String> str = Utils::OpenHandle(this);
@@ -9062,6 +9062,9 @@ bool MicrotasksScope::IsRunningMicrotasks(Isolate* v8Isolate) {
90629062
return isolate->IsRunningMicrotasks();
90639063
}
90649064

9065+
String::Utf8Value::Utf8Value(v8::Local<v8::Value> obj)
9066+
: Utf8Value(Isolate::GetCurrent(), obj) {}
9067+
90659068
String::Utf8Value::Utf8Value(v8::Isolate* isolate, v8::Local<v8::Value> obj)
90669069
: str_(nullptr), length_(0) {
90679070
if (obj.IsEmpty()) return;
@@ -9081,6 +9084,9 @@ String::Utf8Value::~Utf8Value() {
90819084
i::DeleteArray(str_);
90829085
}
90839086

9087+
String::Value::Value(v8::Local<v8::Value> obj)
9088+
: Value(Isolate::GetCurrent(), obj) {}
9089+
90849090
String::Value::Value(v8::Isolate* isolate, v8::Local<v8::Value> obj)
90859091
: str_(nullptr), length_(0) {
90869092
if (obj.IsEmpty()) return;

0 commit comments

Comments
 (0)