Upgrade to node 8.2.0

This commit is contained in:
Kevin Sawicki 2017-07-11 10:09:02 -07:00 committed by Aleksei Kuzmin
parent 9f8f95f4c9
commit 9d2aa6f1c7
5 changed files with 7 additions and 5 deletions

View file

@ -20,7 +20,8 @@ v8::Local<v8::Value> CallMethodWithArgs(v8::Isolate* isolate,
v8::MicrotasksScope::kRunMicrotasks);
// Use node::MakeCallback to call the callback, and it will also run pending
// tasks in Node.js.
return node::MakeCallback(isolate, obj, method, args->size(), &args->front());
return node::MakeCallback(isolate, obj, method, args->size(), &args->front(),
0, 0).ToLocalChecked();
}
} // namespace internal