Appease the linter
This commit is contained in:
parent
8a8f169628
commit
57f934a806
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 the JS function throws an exception (doesn't return a value) the result
|
// If the JS function throws an exception (doesn't return a value) the result
|
||||||
// of MakeCallback will be empty, in this case we need to return "false" as
|
// of MakeCallback will be empty, in this case we need to return "false" as
|
||||||
// that indicates that the event emitter did not handle the event
|
// that indicates that the event emitter did not handle the event
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue