| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 37c8c580fc50acbb1ecf895c9ed07a4c2a90b443..9909b37aa20b587502fa59dc61a25a3c5120a553 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -3549,6 +3549,12 @@ bool Value::SameValue(Local<Value> that) const {
|
| return self->SameValue(*other);
|
| }
|
|
|
| +Local<String> Value::TypeOf(v8::Isolate* external_isolate) {
|
| + i::Isolate* isolate = reinterpret_cast<i::Isolate*>(external_isolate);
|
| + ENTER_V8(isolate);
|
| + LOG_API(isolate, "v8::Value::TypeOf()");
|
| + return Utils::ToLocal(i::Object::TypeOf(isolate, Utils::OpenHandle(this)));
|
| +}
|
|
|
| Maybe<bool> v8::Object::Set(v8::Local<v8::Context> context,
|
| v8::Local<Value> key, v8::Local<Value> value) {
|
|
|