mirror of
https://github.com/nodejs/node.git
synced 2025-05-22 00:43:56 +00:00

Currently the nm_modname does not match the file name of the resulting module. In fact, the nm_modname is pretty arbitrary. This seeks to introduce some consistency into the nm_modname property by having the name of the module appear in exactly one place: the "target_name" property of the gyp target that builds the module. PR-URL: https://github.com/nodejs/node/pull/15209 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
32 lines
680 B
C++
32 lines
680 B
C++
#include "node.h"
|
|
#include "v8.h"
|
|
|
|
#include <assert.h>
|
|
|
|
using v8::Function;
|
|
using v8::FunctionCallbackInfo;
|
|
using v8::Isolate;
|
|
using v8::Local;
|
|
using v8::Object;
|
|
using v8::Value;
|
|
|
|
namespace {
|
|
|
|
void MakeCallback(const FunctionCallbackInfo<Value>& args) {
|
|
assert(args[0]->IsObject());
|
|
assert(args[1]->IsFunction());
|
|
Isolate* isolate = args.GetIsolate();
|
|
Local<Object> recv = args[0].As<Object>();
|
|
Local<Function> method = args[1].As<Function>();
|
|
|
|
node::MakeCallback(isolate, recv, method, 0, nullptr);
|
|
}
|
|
|
|
void Initialize(Local<Object> exports) {
|
|
NODE_SET_METHOD(exports, "makeCallback", MakeCallback);
|
|
}
|
|
|
|
} // namespace
|
|
|
|
NODE_MODULE(NODE_GYP_MODULE_NAME, Initialize)
|