Fix line length in caller.cc

This commit is contained in:
Samuel Attard 2017-11-13 11:42:42 +11:00
parent aa6b9a5025
commit 3c0b233d04
No known key found for this signature in database
GPG key ID: 273DC1869D8F13EF

View file

@ -20,8 +20,9 @@ v8::Local<v8::Value> CallMethodWithArgs(v8::Isolate* isolate,
v8::MicrotasksScope::kRunMicrotasks); v8::MicrotasksScope::kRunMicrotasks);
// Use node::MakeCallback to call the callback, and it will also run pending // Use node::MakeCallback to call the callback, and it will also run pending
// tasks in Node.js. // tasks in Node.js.
v8::MaybeLocal<v8::Value> ret = node::MakeCallback(isolate, obj, method, args->size(), &args->front(), v8::MaybeLocal<v8::Value> ret = node::MakeCallback(isolate, obj, method,
{0, 0}); args->size(),
&args->front(), {0, 0});
if (ret.IsEmpty()) { if (ret.IsEmpty()) {
return v8::Boolean::New(isolate, false); return v8::Boolean::New(isolate, false);
} }