@@ -3933,7 +3933,6 @@ void v8::RegExp::CheckCast(v8::Value* that) {
3933
3933
" Could not convert to regular expression" );
3934
3934
}
3935
3935
3936
-
3937
3936
Maybe<bool > Value::BooleanValue (Local<Context> context) const {
3938
3937
i::Isolate* isolate = reinterpret_cast <i::Isolate*>(context->GetIsolate ());
3939
3938
return Just (Utils::OpenHandle (this )->BooleanValue (isolate));
@@ -5629,6 +5628,7 @@ static bool RecursivelySerializeToUtf8(i::String* current,
5629
5628
return true ;
5630
5629
}
5631
5630
5631
+
5632
5632
int String::WriteUtf8 (Isolate* v8_isolate, char * buffer, int capacity,
5633
5633
int * nchars_ref, int options) const {
5634
5634
i::Handle <i::String> str = Utils::OpenHandle (this );
@@ -9062,6 +9062,9 @@ bool MicrotasksScope::IsRunningMicrotasks(Isolate* v8Isolate) {
9062
9062
return isolate->IsRunningMicrotasks ();
9063
9063
}
9064
9064
9065
+ String::Utf8Value::Utf8Value (v8::Local<v8::Value> obj)
9066
+ : Utf8Value(Isolate::GetCurrent(), obj) {}
9067
+
9065
9068
String::Utf8Value::Utf8Value (v8::Isolate* isolate, v8::Local<v8::Value> obj)
9066
9069
: str_(nullptr ), length_(0 ) {
9067
9070
if (obj.IsEmpty ()) return ;
@@ -9081,6 +9084,9 @@ String::Utf8Value::~Utf8Value() {
9081
9084
i::DeleteArray (str_);
9082
9085
}
9083
9086
9087
+ String::Value::Value (v8::Local<v8::Value> obj)
9088
+ : Value(Isolate::GetCurrent(), obj) {}
9089
+
9084
9090
String::Value::Value (v8::Isolate* isolate, v8::Local<v8::Value> obj)
9085
9091
: str_(nullptr ), length_(0 ) {
9086
9092
if (obj.IsEmpty ()) return ;
0 commit comments