Fix line length in caller.cc
This commit is contained in:
parent
aa6b9a5025
commit
3c0b233d04
1 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue